forked from verdnatura/hedera-web
45 lines
808 B
SCSS
45 lines
808 B
SCSS
// app global css in SCSS form
|
|
|
|
@font-face {
|
|
font-family: Poppins;
|
|
src: url(./poppins.ttf) format('truetype');
|
|
}
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: url(./opensans.ttf) format('truetype');
|
|
}
|
|
@mixin mobile {
|
|
@media screen and (max-width: 960px) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-family: 'Poppins', 'Verdana', 'Sans';
|
|
background-color: #fafafa;
|
|
}
|
|
a.link {
|
|
text-decoration: none;
|
|
color: #6a1;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
.q-card {
|
|
border-radius: 0.6em !important;
|
|
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.q-table__container {
|
|
border-radius: 0.6em !important;
|
|
}
|
|
.q-page-sticky.fixed-bottom-right {
|
|
margin: 18px;
|
|
}
|
|
.no-border-radius {
|
|
border-radius: 0 !important;
|
|
}
|
|
.no-padding {
|
|
padding: 0 !important;
|
|
}
|