Skip to content
Snippets Groups Projects
Select Git revision
  • afe8597200af47cd6086a698536c62296f14f401
  • test default protected
  • master protected
  • original
  • pirati-backup protected
  • beta-2
  • beta-1
  • v3.1.4
  • v3.1.3
  • v3.1.2
  • v3.1.1
  • v3.1.0
  • v3.0.16
  • v3.0.15
  • v3.0.14
  • v3.0.13
  • v3.0.12
  • v3.0.11
  • v3.0.10
  • v3.0.9
  • v3.0.8
  • v3.0.7
  • v3.0.6
  • v3.0.5
  • v3.0.4
25 results

reset.sh

Blame
  • switch.pcss 304 B
    .switch {
      @apply inline-flex;
    }
    
    .switch__item {
      @apply py-4 px-8 bg-grey-150 mr-2 font-alt font-normal text-xl text-white text-center cursor-pointer;
    
      &:hover {
        @apply no-underline bg-grey-400;
      }
    
      &.switch__item--active,
      &.switch__item--active:hover {
        @apply bg-turquoise-500;
      }
    }