1
0
Fork 0
freesewing/packages/css-theme/src/_utility.scss

47 lines
668 B
SCSS
Raw Normal View History

@include xs-screen {
2020-09-27 18:05:05 +02:00
.not-xs {
display: none !important;
}
.only-xs {
display: inherit;
}
2019-05-25 11:12:06 +02:00
}
@include sm-screen {
2020-09-27 18:05:05 +02:00
.not-xs {
display: inherit;
}
.only-xs {
display: none !important;
}
2019-05-25 11:12:06 +02:00
}
@include lg-screen {
2020-09-27 18:05:05 +02:00
.not-xs {
display: inherit;
}
.only-xs {
display: none !important;
}
}
.shadow {
2020-09-27 18:05:05 +02:00
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14),
0 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.theme-wrapper.dark .shadow {
border: 1px solid #fff3;
}
2020-09-27 18:05:05 +02:00
.font-text {
@include body-font;
}
.font-title {
@include title-font;
}
.font-button {
@include button-font;
}
.poh:hover {
cursor: pointer;
}