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-03-22 16:35:46 +01:00
|
|
|
color: var(--color-primary-default);
|
2021-10-08 21:50:36 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
2022-03-23 16:43:53 +01:00
|
|
|
color: var(--color-primary-default);
|
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;
|
|
|
|
}
|
|
|
|
}
|