Files
tgCrewLanding/src/css/app.scss
CCTVcalc cd1a571636
All checks were successful
continuous-integration/drone/push Build is passing
small fix
2026-04-18 23:15:05 +03:00

44 lines
704 B
SCSS

.text-brand {
color: $brand !important;
}
.bg-brand {
background: $brand !important;
}
$base-width: 100;
@while $base-width > 0 {
.w#{$base-width} { width: #{$base-width}+'%'; }
$base-width: $base-width - 10;
}
body, html, #q-app {
font-family: $typography-font-family;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
font-family: inherit;
}
:root {
--body-width: 1240px;
--logo-color-bg-white: grey;
--base-radius: 24px;
}
.main-content {
max-width: var(--body-width) !important;
margin: 0 auto;
}
.rounded-card {
border-radius: var(--base-radius);
}
@font-face {
font-family: 'myFont';
src: url(./fonts/Inter-Regular.woff2);
}