Skip to content
Snippets Groups Projects
Select Git revision
  • fdf6768279c293b8857ed52a15d65dac3dfddc6e
  • ui_koalicni default
  • ui_styleguide protected
3 results

navbar.pcss

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;
      }
    }