maps-service/web/src/app/globals.scss

26 lines
537 B
SCSS
Raw Normal View History

2024-12-10 02:14:54 +00:00
$review-border-color: #c8c8c8;
$review-border: 1px solid $review-border-color;
@mixin border-with-radius {
border: $review-border {
radius: 5px;
}
}
:root {
color-scheme: light;
}
body {
font-family: -apple-system, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla";
box-sizing: border-box;
margin: 0;
}
button {
cursor: pointer;
}
a:active, a:link, a:hover {
text-decoration: none;
}