You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
1.0 KiB

  1. html {
  2. box-sizing: border-box;
  3. font-family: $core-font-standard;
  4. height: 100%;
  5. }
  6. *, *:before, *:after {
  7. box-sizing: inherit;
  8. }
  9. [v-cloak], .is-hidden {
  10. display: none;
  11. }
  12. #app {
  13. position: relative;
  14. min-height: 100%;
  15. &.is-fullscreen {
  16. height: 100vh;
  17. }
  18. }
  19. // Container
  20. .container {
  21. position: relative;
  22. }
  23. .content {
  24. padding: 20px;
  25. }
  26. .datatable {
  27. th, td {
  28. vertical-align: middle;
  29. }
  30. }
  31. // Visibility
  32. .is-hidden {
  33. display: none !important;
  34. }
  35. .is-hidden-mobile {
  36. @include mobile {
  37. display: none !important;
  38. }
  39. }
  40. .is-hidden-tablet {
  41. @include tablet {
  42. display: none !important;
  43. }
  44. }
  45. .is-hidden-tablet-only {
  46. @include tablet-only {
  47. display: none !important;
  48. }
  49. }
  50. .is-hidden-touch {
  51. @include touch {
  52. display: none !important;
  53. }
  54. }
  55. .is-hidden-desktop {
  56. @include desktop {
  57. display: none !important;
  58. }
  59. }
  60. .is-hidden-desktop-only {
  61. @include desktop-only {
  62. display: none !important;
  63. }
  64. }
  65. .is-hidden-widescreen {
  66. @include widescreen {
  67. display: none !important;
  68. }
  69. }