28 lines
406 B
SCSS
28 lines
406 B
SCSS
|
@import "colors";
|
||
|
@import "constants";
|
||
|
|
||
|
#agentconnect {
|
||
|
.agent {
|
||
|
color: $blue-france-500;
|
||
|
text-align: center;
|
||
|
font-size: 28px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.box {
|
||
|
background-color: #F2F2F9;
|
||
|
padding: $default-padding;
|
||
|
|
||
|
ul {
|
||
|
list-style: disc;
|
||
|
padding-left: inherit;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.citizen {
|
||
|
font-size: 16px;
|
||
|
color: $blue-france-500;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
}
|