fleet/frontend/pages/ConfirmInvitePage/_styles.scss
Martavis Parker 384c987389
Removed all traces of Redux from the app! (#5287)
* clean up routes and useless components

* component clean up

* removed redux from routes

* rename file

* moved useDeepEffect hook with others

* removed redux, fleet, app_constants dirs; added types to utilities

* style cleanup

* typo fix

* removed unused ts-ignore comments

* removed redux packages!!!

* formatting

* fixed typing for simple search function

* updated frontend readme
2022-04-22 09:45:35 -07:00

60 lines
1.0 KiB
SCSS

.confirm-invite-page {
margin: 2.5rem auto;
background-color: $core-white;
border-radius: 10px;
width: 436px;
padding: $pad-xxlarge;
&__form-section-description {
h2 {
font-size: 18px;
font-weight: $bold;
line-height: 0.72;
letter-spacing: 0.6px;
color: $core-fleet-black;
margin: 0;
padding: 0;
}
p {
color: $core-fleet-black;
font-size: $x-small;
font-weight: $regular;
}
}
&__form-section-wrapper {
box-sizing: border-box;
margin-bottom: 110px;
}
&__lead-wrapper {
border-radius: $border-radius;
box-sizing: border-box;
}
&__lead-text {
font-size: $medium;
font-weight: $regular;
margin: 0 0 6px;
text-align: center;
}
&__sub-lead-text {
font-size: $x-small;
font-weight: $regular;
text-align: center;
margin: 0;
}
.confirm-invite-button-wrap {
display: flex;
justify-content: center;
margin-top: $pad-xxlarge;
.button {
width: 160px;
}
}
}