mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
38 lines
574 B
SCSS
38 lines
574 B
SCSS
.forgot-password {
|
|
&__header {
|
|
text-align: left;
|
|
}
|
|
|
|
&__text-wrapper {
|
|
padding: $pad-base;
|
|
background-color: $accent-light;
|
|
border-radius: 4px;
|
|
margin-bottom: $pad-base;
|
|
}
|
|
|
|
&__text {
|
|
font-size: $medium;
|
|
}
|
|
|
|
&__email {
|
|
color: $link;
|
|
}
|
|
|
|
&__button {
|
|
background-color: $success-light;
|
|
border-radius: 4px;
|
|
color: $white;
|
|
padding: $pad-base;
|
|
position: relative;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
&__icon {
|
|
font-size: 35px;
|
|
left: 18px;
|
|
position: absolute;
|
|
top: 14px;
|
|
}
|
|
}
|