postcss-nested.css 225 B

123456789101112131415
  1. .phone {
  2. &_title {
  3. width: 500px;
  4. @media (max-width: 500px) {
  5. width: auto;
  6. }
  7. body.is_dark & {
  8. color: white;
  9. }
  10. }
  11. img {
  12. display: block;
  13. }
  14. }