Skip to content

Instantly share code, notes, and snippets.

View yuko-m's full-sized avatar
🏠
Working from home

yuko-m

🏠
Working from home
View GitHub Profile
@yuko-m
yuko-m / unstyled-list.scss
Created June 6, 2019 08:26
`list-style: none` な `ul` `ol` が Safari で ARIA Role を失うので、忘れずに role=list で補うための対策
$color-error: #c53d43;
$color-highlight: #fff;
@mixin unstyled-list {
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
list-style: none;
&:not([role])::after {