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

tailwind.config.js

  • dropdown.pcss 336 B
    .dropdown {
      @apply relative inline-block;
    }
    
    .dropdown__content {
      @apply hidden absolute shadow-md z-10;
    }
    
    .dropdown:hover .dropdown__content {
      @apply block max-w-sm;
    }
    
    .dropdown__content-item {
      @apply block no-underline;
    
      a:hover {
        @apply no-underline;
      }
    }
    
    
    .dropdown--right .dropdown__content {
      @apply right-0;
    }