Add some basic reset styles (ul, p, figure)

This commit is contained in:
Deven Caron
2019-06-26 14:04:13 -04:00
parent e6dec31198
commit cf9a0a2705
2 changed files with 13 additions and 11 deletions

View File

@@ -45,6 +45,19 @@ a {
}
}
// Resets
ul {
margin: 0;
padding: 0;
list-style: none;
}
p,
figure {
margin: 0;
padding: 0;
}
/**
* 1. Single taps should be dispatched immediately on clickable elements
*/

View File

@@ -121,17 +121,6 @@
}
}
//
// Injects generic rules for disabling UL/OL/LI styles.
//
// @output `list-style`, `margin`, `padding`
//
@mixin u-list-reset {
margin: 0;
padding: 0;
list-style: none;
}
//
// Prevent text from wrapping onto multiple lines for the current element.
//