30 lines
390 B
SCSS
30 lines
390 B
SCSS
.page-title {
|
|||
|
|
font-size: 28px;
|
||
|
|
font-weight: 600;
|
||
|
|
margin-bottom: 30px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
color: #1f2937;
|
||
|
|
|
||
|
|
&::before {
|
||
|
|
content: '';
|
||
|
|
width: 8px;
|
||
|
|
height: 8px;
|
||
|
|
background: #6366f1;
|
||
|
|
border-radius: 50%;
|
||
|
|
margin-right: 15px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.protection-overview {
|
||
|
|
h3 {
|
||
|
|
margin: 0 0 10px 0;
|
||
|
|
font-size: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
p {
|
||
|
|
margin: 0;
|
||
|
|
opacity: 0.9;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
}
|