2022-12-20 11:00:36 +00:00
|
|
|
// app global css in SCSS form
|
2022-12-20 11:30:25 +00:00
|
|
|
@import './icons.scss';
|
|
|
|
|
2023-01-03 13:17:22 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2022-12-20 11:30:25 +00:00
|
|
|
.link {
|
|
|
|
color: $primary;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link:hover {
|
|
|
|
color: $orange-4;
|
|
|
|
}
|
2023-01-19 06:17:51 +00:00
|
|
|
|
|
|
|
// Removes chrome autofill background
|
|
|
|
input:-webkit-autofill,
|
|
|
|
select:-webkit-autofill {
|
|
|
|
color: $input-text-color !important;
|
|
|
|
font-family: $typography-font-family;
|
|
|
|
-webkit-text-fill-color: $input-text-color !important;
|
|
|
|
-webkit-background-clip: text !important;
|
|
|
|
background-clip: text !important;
|
|
|
|
}
|
2023-02-09 06:26:08 +00:00
|
|
|
|
|
|
|
body.body--light {
|
|
|
|
.q-toolbar {
|
|
|
|
background-color: white;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
}
|