12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- html {
- box-sizing: border-box;
- font-family: $core-font-standard;
- height: 100%;
- }
- *, *:before, *:after {
- box-sizing: inherit;
- }
- [v-cloak], .is-hidden {
- display: none;
- }
- #app {
- position: relative;
- min-height: 100%;
- &.is-fullscreen {
- height: 100vh;
- }
- }
- // Container
- .container {
- position: relative;
- }
- .content {
- padding: 20px;
- }
- .datatable {
- th, td {
- vertical-align: middle;
- }
- }
- // Visibility
- .is-hidden {
- display: none !important;
- }
- .is-hidden-mobile {
- @include mobile {
- display: none !important;
- }
- }
- .is-hidden-tablet {
- @include tablet {
- display: none !important;
- }
- }
- .is-hidden-tablet-only {
- @include tablet-only {
- display: none !important;
- }
- }
- .is-hidden-touch {
- @include touch {
- display: none !important;
- }
- }
- .is-hidden-desktop {
- @include desktop {
- display: none !important;
- }
- }
- .is-hidden-desktop-only {
- @include desktop-only {
- display: none !important;
- }
- }
- .is-hidden-widescreen {
- @include widescreen {
- display: none !important;
- }
- }
|