Files
astuto/app/assets/stylesheets/components/SiteSettings/Authentication/index.scss
Riccardo Graziosi a11157295d Various improvements (#325)
* Fix missing translation in roadmap
* Fix resizing of textareas
* Increase line height for small muted texts
* Improve collapsed board list style
* Fix switch on top of header (z-index)
* Fix margin inconsistencies in site settings
* Add user count to site settings
2024-04-10 23:28:58 +02:00

55 lines
838 B
SCSS

.authenticationIndexPage {
.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 {
@extend .d-flex;
align-self: center;
}
.defaultOAuthDiv {
@extend .d-flex;
.defaultOAuthLabel { @extend .align-self-center; }
}
}
}
}
.authenticationFormPage {
a.backButton {
@extend .mb-2, .align-self-start;
font-size: 18px;
}
}