1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00
Peertube/client/src/app/shared/user-subscription/subscribe-button.component.scss
2018-08-27 09:41:54 +02:00

51 lines
No EOL
682 B
SCSS

@import '_variables';
@import '_mixins';
.subscribe-button {
@include peertube-button;
@include orange-button;
}
.unsubscribe-button {
@include peertube-button;
@include grey-button
}
.subscribe-button,
.unsubscribe-button {
display: inline-block;
&.small {
min-width: 75px;
height: 20px;
line-height: 20px;
font-size: 13px;
}
&.normal {
min-width: 120px;
height: 30px;
line-height: 30px;
font-size: 16px;
}
}
.unsubscribe-button {
.subscribed {
display: inline;
}
.unsubscribe {
display: none;
}
&:hover {
.subscribed {
display: none;
}
.unsubscribe {
display: inline;
}
}
}