app.scss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. //
  2. //Vuetify
  3. $darker-green: #0DBDA7;
  4. $orange: #F08322;
  5. @import '~vuetify/dist/vuetify.min.css';
  6. .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
  7. padding: 0 12px;
  8. }
  9. .v-input__slot, .v-label {
  10. margin-bottom: 0;
  11. }
  12. .no-v-padding {
  13. .v-expansion-panel-content__wrap {
  14. padding: 0 !important;
  15. }
  16. }
  17. .status {
  18. position: relative;
  19. &:before {
  20. position: absolute;
  21. content: "";
  22. width: 8px;
  23. height: 8px;
  24. border-radius: 8px;
  25. left: -1rem;
  26. bottom: 5px;
  27. background-color: $orange;
  28. }
  29. &.is-active {
  30. &:before {
  31. background-color: $darker-green;
  32. }
  33. }
  34. }
  35. /* Animation */
  36. .tiles-enter-active,
  37. .tiles-leave-active {
  38. transition: all 0.5s;
  39. }
  40. .tiles-enter,
  41. .tiles-leave-to {
  42. opacity: 0;
  43. transform: scale(0.3);
  44. }
  45. /* Grid */
  46. .vue-grid-item {
  47. .v-btn.v-btn--kick {
  48. bottom: 0;
  49. left: 50%;
  50. transform: translateX(-50%);
  51. position: fixed;
  52. margin-bottom: 8px;
  53. z-index: 10000 !important;
  54. transition: all 0.3s;
  55. opacity: 0;
  56. }
  57. &:hover {
  58. .v-btn.v-btn--kick {
  59. opacity: 1
  60. }
  61. }
  62. }
  63. /* MC */
  64. .mc-page {
  65. overflow: hidden;
  66. }
  67. #meetingsApp.pro {
  68. overflow-y: scroll;
  69. overflow-x: hidden;
  70. height: 100vh;
  71. }
  72. /* Client App */
  73. #meetingsApp.client {
  74. width: 75%;
  75. height: 75%;
  76. background: #e9ecef;
  77. .v-application--wrap {
  78. min-height: 0;
  79. }
  80. }