diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 0000000..e9c6f36 Binary files /dev/null and b/public/favicon.png differ diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..ddc7f7b --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1 @@ + diff --git a/src/components/Card/styles.sass b/src/components/Card/styles.sass index 178c82e..3699dee 100644 --- a/src/components/Card/styles.sass +++ b/src/components/Card/styles.sass @@ -20,4 +20,12 @@ .btn-area display: flex - gap: 0.5rem \ No newline at end of file + gap: 0.5rem + flex-wrap: wrap + +@media screen and (max-width: 510px) + .card + width: 100% + + .btn-area + justify-content: center \ No newline at end of file diff --git a/src/components/Navigation/Navigation.jsx b/src/components/Navigation/Navigation.jsx index 94f5533..0a8f19e 100644 --- a/src/components/Navigation/Navigation.jsx +++ b/src/components/Navigation/Navigation.jsx @@ -9,15 +9,15 @@ export const Navigation = () => {
- +

Alle Spiele

- +

Wirtschaft

- +

Geschichte

diff --git a/src/components/Navigation/styles.sass b/src/components/Navigation/styles.sass index 288033e..feecee3 100644 --- a/src/components/Navigation/styles.sass +++ b/src/components/Navigation/styles.sass @@ -46,4 +46,22 @@ nav color: $text-light font-size: 14pt font-weight: 500 - text-decoration: none \ No newline at end of file + text-decoration: none + +.nav-mobile + display: none + + +@media screen and (max-width: 1024px) + nav + margin: 1rem 1rem + + .nav-items + display: none + +@media screen and (max-width: 510px) + nav + margin: 1rem 0.5rem + + .action-buttons + display: none \ No newline at end of file diff --git a/src/styles/main.sass b/src/styles/main.sass index dd88aa4..0926145 100644 --- a/src/styles/main.sass +++ b/src/styles/main.sass @@ -43,5 +43,17 @@ footer display: flex justify-content: center + p + text-align: center + span - color: $primary \ No newline at end of file + color: $primary + + +@media screen and (max-width: 1024px) + main + margin: 3rem 10vw + +@media screen and (max-width: 768px) + main + margin: 3rem 5vw \ No newline at end of file