sfgov-design-system
Version:
This is the design system for [SF.gov](https://sf.gov) and the City & County of San Francisco.
27 lines (21 loc) • 353 B
CSS
@import 'tailwindcss/base';
@layer base {
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
}
a {
@apply text-slate-3;
}
:focus,
.focus {
outline: 2px dotted #aeb0b5;
outline-offset: 3px; /* TODO [^3]: remove outline-offset (or set to 0) */
}
::placeholder {
@apply text-slate-light;
}
}