moved section card classes out of the theme file
parent
cda2273c08
commit
8bf3e84ce8
|
@ -1,3 +1,5 @@
|
|||
@import "~src/stylesheets/components/cards";
|
||||
|
||||
#agreement-panels {
|
||||
margin: 8px;
|
||||
}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
@import "~src/stylesheets/components/cards";
|
||||
|
||||
mat-card {
|
||||
button {
|
||||
color: white;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
@import "~src/stylesheets/components/cards";
|
||||
|
||||
#antisocial-login {
|
||||
margin: 16px;
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
@import '~@angular/material/theming';
|
||||
@import "mycroft-colors";
|
||||
@import "~src/stylesheets/components/cards";
|
||||
|
||||
// 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
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
@import "~src/stylesheets/components/cards";
|
||||
|
||||
.mat-h3 {
|
||||
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