Sha256: 4295272487a2dd953eac6ac9dc34c115bfaced137fa8694bb89aa8b2e3142504

Contents?: true

Size: 844 Bytes

Versions: 3

Compression:

Stored size: 844 Bytes

Contents

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  /* Not sure base is correct here */
  body > nav li {
    cursor: default;
  }

  body > nav a,
  body > nav a:hover,
  body > nav a:active,
  body > nav a:visited
  {
    color: theme('colors.slate.900');
    cursor:  default;
    text-decoration: none;
    transition: background-color 80ms linear;
    font-weight: normal;
    font-size: unset;
    line-height:inherit;
  }

  turbo-frame {
    display: block;
  }
}

summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

details > summary::before {
  content: "▶︎";
  font-size: 0.8rem;
  flex: none;
  line-height: 1.6rem;
  margin-right: 0.4rem;
  transition: rotate 0.2s ease-in-out;
}

details[open] > summary::before {
  rotate: 90deg;
  transition: rotate 0.2s ease-in-out;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
scrapbook-0.3.2 app/assets/stylesheets/scrapbook/application.tailwind.css
scrapbook-0.3.1 app/assets/stylesheets/scrapbook/application.tailwind.css
scrapbook-0.3.0 app/assets/stylesheets/scrapbook/application.tailwind.css