1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00
Files
locomotive-boilerplate/www/modules/boilerplate/assets/styles/src/generic/_button.scss

27 lines
532 B
SCSS
Raw Normal View History

// ==========================================================================
// Button resets
// ==========================================================================
button,
.button {
display: inline-block;
overflow: visible;
margin: 0;
padding: 0;
outline: 0;
border: 0;
background: none;
color: inherit;
vertical-align: middle;
text-align: center;
text-decoration: none;
text-transform: none;
font: inherit;
line-height: normal;
cursor: pointer;
user-select: none;
&:hover {
text-decoration: none;
}
}