mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-01-08 05:22:16 -05:00
24 lines
501 B
SCSS
24 lines
501 B
SCSS
@import "../../colors";
|
|
@import "../../frameless";
|
|
|
|
.modal-flush-bottom-button {
|
|
margin: 0;
|
|
width: 100%;
|
|
border: none;
|
|
border-bottom-left-radius: 1rem;
|
|
border-bottom-right-radius: 1rem;
|
|
height: 5.1875rem;
|
|
background-color: $ui-orange;
|
|
|
|
&:hover {
|
|
transition: background-color .25s ease;
|
|
background-color: $ui-orange-90percent;
|
|
}
|
|
}
|
|
|
|
.next-step-title {
|
|
font-size: 1.25rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|