Files
astuto/app/assets/stylesheets/components/SiteSettings/Authentication/index.scss

51 lines
744 B
SCSS
Raw Normal View History

.authenticationIndexPage {
h2 { @extend .mb-3; }
.oauthProvidersTitle {
@extend .d-flex;
button {
@extend .ml-2;
height: min-content;
}
}
.oAuthsList {
@extend .pl-1;
list-style: none;
.oAuthListItem {
@extend
.d-flex,
.justify-content-between,
.my-2,
.p-3;
.oAuthInfo {
@extend .d-flex;
column-gap: 32px;
.oAuthLogo { border-radius: 100%; align-self: center; }
.oAuthName { font-size: 18px; }
}
.oAuthActions {
2022-08-22 10:38:03 +02:00
@extend .d-flex;
2022-08-22 10:38:03 +02:00
align-self: center;
}
}
}
}
.authenticationFormPage {
a.backButton {
2022-08-22 10:38:03 +02:00
@extend .mb-2, .align-self-start;
font-size: 18px;
}
}