23 lines
355 B
SCSS
23 lines
355 B
SCSS
$fxl-gray: #263238;
|
|
$fxl-orange: #ff6e40;
|
|
|
|
@use "@material/theme" with (
|
|
$primary: $fxl-orange,
|
|
$on-primary: $fxl-gray
|
|
);
|
|
|
|
@use "@material/icon-button";
|
|
@use "@material/top-app-bar/mdc-top-app-bar";
|
|
@use "@material/typography/mdc-typography";
|
|
|
|
html, body {
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
footer {
|
|
font-size: smaller;
|
|
}
|
|
} |