moved section card classes out of the theme file
parent
cda2273c08
commit
8bf3e84ce8
|
@ -1,3 +1,5 @@
|
||||||
|
@import "~src/stylesheets/components/cards";
|
||||||
|
|
||||||
#agreement-panels {
|
#agreement-panels {
|
||||||
margin: 8px;
|
margin: 8px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
@import "~src/stylesheets/components/cards";
|
||||||
|
|
||||||
mat-card {
|
mat-card {
|
||||||
button {
|
button {
|
||||||
color: white;
|
color: white;
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
@import "~src/stylesheets/components/cards";
|
||||||
|
|
||||||
#antisocial-login {
|
#antisocial-login {
|
||||||
margin: 16px;
|
margin: 16px;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
@import '~@angular/material/theming';
|
@import '~@angular/material/theming';
|
||||||
@import "mycroft-colors";
|
@import "mycroft-colors";
|
||||||
|
@import "~src/stylesheets/components/cards";
|
||||||
|
|
||||||
// Angular Material does not support a form field with a map control inside it.
|
// Angular Material does not support a form field with a map control inside it.
|
||||||
// Do our best to make this look like the other form fields
|
// Do our best to make this look like the other form fields
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
@import "~src/stylesheets/components/cards";
|
||||||
|
|
||||||
.mat-h3 {
|
.mat-h3 {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
@import "~@angular/material/theming";
|
||||||
|
@import "mycroft-colors";
|
||||||
|
|
||||||
|
.section-card {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
max-width: 1000px;
|
||||||
|
min-width: 260px;
|
||||||
|
|
||||||
|
.section-card-title-bar {
|
||||||
|
background-color: mat-color($mycroft-primary, 50);
|
||||||
|
border-radius: 6px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
max-width: 1000px;
|
||||||
|
min-width: 260px;
|
||||||
|
|
||||||
|
.section-card-title {
|
||||||
|
color: mat-color($mycroft-primary, 500);
|
||||||
|
text-align: center;
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: bold;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue