2021-10-08 21:50:36 +02:00
|
|
|
.privacy-settings {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 500px;
|
|
|
|
margin: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__settings {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 620px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
a {
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--Blue-500);
|
2021-10-08 21:50:36 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--Blue-300);
|
2021-10-08 21:50:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__setting {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: left;
|
|
|
|
max-width: 430px;
|
|
|
|
|
|
|
|
&__toggle {
|
|
|
|
margin-left: 42px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& button {
|
|
|
|
max-width: 50%;
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
}
|