hubl/src/styles/hubl-framework/forms/buttons.scss

28 lines
420 B
SCSS
Raw Normal View History

2020-12-06 01:03:40 +00:00
input[type='submit'] {
@extend .button,
.text-xsmall,
.text-bold,
2020-12-04 14:44:45 +00:00
.text-uppercase,
.reversed,
2020-12-06 01:03:40 +00:00
.color-secondary,
.bordered;
2020-12-04 14:44:45 +00:00
height: auto;
position: fixed;
bottom: 1em;
left: 10%;
white-space: normal;
width: 80%;
z-index: 1;
2020-12-06 01:03:40 +00:00
@media($large) {
2020-12-04 14:44:45 +00:00
position: unset;
bottom: unset;
white-space: unset;
left: unset;
width: unset;
z-index: unset;
float: right;
margin-top: 10px;
2020-12-06 01:03:40 +00:00
}
2020-12-04 14:44:45 +00:00
}