mirror of
https://github.com/Lissy93/happy-app.git
synced 2021-05-12 19:52:18 +03:00
31 lines
544 B
SCSS
31 lines
544 B
SCSS
|
|
@import "../../styles/constants.scss";
|
|
|
|
|
|
/*******************************************\
|
|
|** DYNAMICALLY ADDED STYLES FOR D3 CHART **|
|
|
\*******************************************/
|
|
:host /deep/ {
|
|
|
|
#calendar {
|
|
margin: 20px;
|
|
}
|
|
.month {
|
|
margin-right: 1em;
|
|
}
|
|
.month-name {
|
|
font-size: 85%;
|
|
fill: $med-grey;
|
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
}
|
|
.day.hover {
|
|
stroke: $dark-grey;
|
|
stroke-width: 2;
|
|
}
|
|
.day.focus {
|
|
stroke: #ffff33;
|
|
stroke-width: 2;
|
|
}
|
|
|
|
}
|