aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-instance/instance-features-table.component.scss
blob: bfae0c112f6b3daacd2d298e46f70cc86c112bda (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                       


                  
                                     
              
 

              
             



                                  

                                  
                                 




                           
                      
     

   
     
      

                                  
   


                      


                                       
 

          
                               



                     
@use '_variables' as *;
@use '_mixins' as *;

table {
  font-size: 14px;
  color: pvar(--mainForegroundColor);
  width: 100%;

  .label,
  .sub-label {
    &.label {
      font-weight: $font-semibold;
    }

    &.sub-label {
      @include padding-left(30px);

      font-weight: $font-regular;
    }

    .more-info {
      font-style: italic;
      font-weight: initial;
      font-size: 14px;
    }
  }

  th,
  td {
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
  }

  caption {
    caption-side: top;
    font-weight: $font-semibold;
    color: pvar(--mainForegroundColor);
  }

  .plugin,
  .theme {
    &:not(:last-child)::after {
      content: '•';
    }
  }
}