27 lines
411 B
Sass
27 lines
411 B
Sass
@use "@styles/colors" as *
|
|
|
|
header
|
|
display: flex
|
|
justify-content: center
|
|
align-items: center
|
|
gap: 1rem
|
|
height: 10vh
|
|
user-select: none
|
|
|
|
svg
|
|
font-size: 26pt
|
|
background-color: $background
|
|
|
|
h1
|
|
margin: 0
|
|
padding: 2rem 1rem
|
|
background-color: $background
|
|
|
|
header *
|
|
z-index: 2
|
|
|
|
@media screen and (max-width: 500px)
|
|
header svg
|
|
font-size: 18pt
|
|
header h1
|
|
font-size: 1.5rem |