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

20 lines
412 B
SCSS
Raw Normal View History

// ==========================================================================
// Button objects
// ==========================================================================
.o-button {
padding: rem(10px);
background-color: lightgray;
&:focus {
background-color: darkgray;
}
&:hover {
background-color: gray;
}
&:active {
background-color: dimgray;
}
}