Files
astuto/app/assets/stylesheets/components/SiteSettings/Authentication/index.scss
Riccardo Graziosi d8cf46c351 Switch from webpacker to (css|js)bundling-rails (#227)
* Install jsbundling-rails, uninstall rails/webpacker
* Remove outdated step from run-tests workflow
* Use cssbundling-rails for CSS
2023-05-19 17:47:01 +02:00

51 lines
744 B
SCSS

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