Skip to content
Snippets Groups Projects
Commit 967c3a5b authored by khawkins's avatar khawkins
Browse files

Adds no underline and no-margin utility classes

parent 0f72c7da
No related branches found
No related tags found
No related merge requests found
......@@ -763,6 +763,15 @@ code {
.inline-block {
display: inline-block; }
/* no margins */
.no-margin {
margin: 0; }
/* no underline for links */
a.no-underline {
border-bottom: none;
text-decoration: none; }
/* buttons */
.button:focus,
.button:hover,
......
This diff is collapsed.
......@@ -693,6 +693,12 @@ code { font-size: .95rem; }
/* inline-block */
.inline-block { display: inline-block; }
/* no margins */
.no-margin { margin: 0; }
/* no underline for links */
a.no-underline { border-bottom: none; text-decoration: none; }
/* buttons */
.button:focus,
.button:hover,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment