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

48 lines
876 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-08-10 11:20:32 +00:00
background-color: $white;
2023-02-09 06:26:08 +00:00
color: #555;
}
--vn-text: #000000;
2023-08-17 06:50:10 +00:00
--vn-gray: #f5f5f5;
--vn-label: #5f5f5f;
--vn-dark: white;
}
body.body--dark {
--vn-text: #ffffff;
--vn-gray: #313131;
--vn-label: #a8a8a8;
--vn-dark: #292929;
}
.bg-vn-dark {
background-color: var(--vn-dark);
2023-08-10 08:52:34 +00:00
}