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.

94 lines
1.2 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-until-scroll {
  36. max-height: 0;
  37. overflow: hidden;
  38. transition: all .6s ease;
  39. }
  40. .is-sticky .is-hidden-until-scroll {
  41. max-height: 30px;
  42. }
  43. .is-hidden-mobile {
  44. @include mobile {
  45. display: none !important;
  46. }
  47. }
  48. .is-hidden-tablet {
  49. @include tablet {
  50. display: none !important;
  51. }
  52. }
  53. .is-hidden-tablet-only {
  54. @include tablet-only {
  55. display: none !important;
  56. }
  57. }
  58. .is-hidden-touch {
  59. @include touch {
  60. display: none !important;
  61. }
  62. }
  63. .is-hidden-desktop {
  64. @include desktop {
  65. display: none !important;
  66. }
  67. }
  68. .is-hidden-desktop-only {
  69. @include desktop-only {
  70. display: none !important;
  71. }
  72. }
  73. .is-hidden-widescreen {
  74. @include widescreen {
  75. display: none !important;
  76. }
  77. }