27 lines
412 B
SCSS
27 lines
412 B
SCSS
:host {
|
|
display: block;
|
|
min-height: 100vh;
|
|
background: #1a1a2e;
|
|
color: #e0e0e0;
|
|
font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
|
|
}
|
|
|
|
.main-content {
|
|
padding: 16px;
|
|
|
|
@media (min-width: 800px) {
|
|
padding: 24px;
|
|
}
|
|
}
|
|
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
} |