2022-05-31 05:55:31 -07:00
|
|
|
.account__header__subscribe {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
right: max(10px, env(safe-area-inset-right));
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
.subscription-button {
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
margin-bottom: 4px;
|
2020-10-11 14:23:19 -07:00
|
|
|
display: flex;
|
2022-05-31 05:55:31 -07:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: var(--background-color);
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2021-09-13 11:51:29 -07:00
|
|
|
|
2022-05-31 05:55:31 -07:00
|
|
|
&:not(.button-active) i.fa {
|
|
|
|
margin: 0;
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2020-08-12 11:02:20 -07:00
|
|
|
|
2022-05-31 05:55:31 -07:00
|
|
|
.svg-icon {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2020-08-12 11:02:20 -07:00
|
|
|
}
|
2020-05-15 20:48:08 -07:00
|
|
|
}
|
2020-08-25 11:47:02 -07:00
|
|
|
}
|
|
|
|
|
2020-06-02 19:11:01 -07:00
|
|
|
.account__header__content {
|
2020-06-06 20:55:00 -07:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-06-02 19:11:01 -07:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: normal;
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|