summaryrefslogblamecommitdiffstats
path: root/webapp/src/assets/styles.css
blob: 83556ca033f3a99334679a5c5c6267006a8105c9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
      
                     








                                              
             


                                              


                                          

                          
                  

 
                                                              
                             


                            
                     

               



                            




                                         

 
                            
                                

 


                            
 


                   
             
 
 
                                    









                                  

 
                 
                     
 
html {
  overflow-y: scroll;
}

.non-selectable {
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}

.selectable {
  -webkit-user-select: text; /* Safari 3.1+ */
  -moz-user-select: text; /* Firefox 2+ */
  -ms-user-select: text; /* IE 10+ */
  user-select: text; /* Standard syntax */
}

.non-draggable {
  -webkit-user-drag: none;
  user-drag: none;
}

.no-animation *, .no-animation :before, .no-animation :after {
 transition: none !important;
 animation: none !important;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 6px;
}

.theme--light ::-webkit-scrollbar-thumb {
  background-color: #cccccc;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-webkit-scrollbar-button {
  display: none;
}

.tabbar-card {
  position: sticky;
  top: 64px;
  z-index: 9;
}

.tabbar-card .v-tabs .v-tabs__item {
  text-transform: none !important;
}

@media (max-width: 959px) {
  .tabbar-card {
    top: 56px;
    margin-top: -16px;
    margin-left: -16px;
    margin-right: -16px;
  }
}

.tabbar-tabicon {
  margin-right: 12px;
}