Sengi-Windows-MacOS-Linux/src/app/components/stream/status/status-translate/status-translate.component....

44 lines
821 B
SCSS
Raw Normal View History

2023-08-05 04:57:06 +02:00
@import "variables";
@import "commons";
2023-08-06 00:40:46 +02:00
$translation-color: #656b8f;
$translation-color-hover: #9fa5ca;
2023-08-05 04:57:06 +02:00
.translation {
margin: 0 10px 0 $avatar-column-space;
2023-08-06 00:40:46 +02:00
color: $translation-color;
font-size: 12px;
&__button-display {
text-align: center;
&__link {
2023-08-06 22:59:03 +02:00
display: block;
2023-08-06 00:40:46 +02:00
padding: 5px 5px 0 5px;
}
}
2023-08-05 04:57:06 +02:00
2023-08-06 00:40:46 +02:00
&__display {
display: flex;
justify-content: space-between;
&__link {
padding: 5px 0 0 0;
}
2023-08-05 05:36:21 +02:00
}
&__link {
2023-08-06 00:40:46 +02:00
color: $translation-color;
2023-08-05 05:36:21 +02:00
transition: all .2s;
&:hover {
text-decoration: none;
2023-08-06 00:40:46 +02:00
color: $translation-color-hover;
2023-08-05 05:36:21 +02:00
}
}
&__by {
display: block;
text-align: left;
padding: 5px 0 0 0;
2023-08-06 00:40:46 +02:00
}
2023-08-05 04:57:06 +02:00
}