Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $color-error: #c53d43;
  2. $color-highlight: #fff;
  3.  
  4. @mixin unstyled-list {
  5. margin-top: 0;
  6. margin-bottom: 0;
  7. padding-left: 0;
  8. list-style: none;
  9.  
  10. &:not([role])::after {
  11. content: "Safari のために role=list を記述しましょう";
  12. position: absolute;
  13. padding-right: 0.5em;
  14. padding-left: 0.5em;
  15. border-radius: 4px;
  16. background-color: $color-error;
  17. color: $color-highlight;
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement