0
0
Fork 0
salix-front-mindshore-fork2/src/css/app.scss

32 lines
606 B
SCSS
Raw Normal View History

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 {
2023-02-09 14:07:27 +00:00
.q-header .q-toolbar {
2023-02-09 06:26:08 +00:00
background-color: white;
color: #555;
}
}