mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
* 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
55 lines
838 B
SCSS
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;
|
|
}
|
|
} |