Files
OfficialSite/assets/styles/objects/_button.scss
Chauncey McAskill 79219e0659 Updated EditorConfig Recommendations
Applied 4-spaces for everything as per: https://locomotivemtl.teamwork.com/tasks/7113032
2016-09-07 18:30:36 -04:00

20 lines
412 B
SCSS

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