some css and a class

This commit is contained in:
Zack Rauen 2018-06-28 01:32:05 -04:00
parent ca4a586da0
commit 33cb8c8ab5
4 changed files with 10 additions and 11 deletions

View File

@ -817,8 +817,12 @@
width: 160px;
}
.bd-minimal .name-3M0b8v {
font-size: 14px;
.bd-minimal .content-20Aix8 {
transform: scale(0.9);
}
.bd-minimal .containerDefault-3GGEv_ {
transform: scale(0.9);
}
.bd-minimal .icon-sxakjD {
@ -826,11 +830,6 @@
height: 14px;
}
.bd-minimal .channels-Ie2l6A .wrapperDefault-10Jfvz,
.bd-minimal .channels-Ie2l6A .wrapperHovered-28fu1D {
display: none;
}
.emotewrapper {
display: inline-block;
position: relative;

2
css/main.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -3602,7 +3602,7 @@ class V2C_Layer extends BDV2.reactComponent {
done: () => {$(`#${this.props.rootId}`).remove();}
});
$('[class*="layer-"]').animate({opacity: 1}, {
$('[class*="layer-"]').removeClass("publicServersOpen").animate({opacity: 1}, {
step: function(now, fx) {
$(this).css("transform", `scale(${0.07*now + 0.93}) translateZ(0px)`);
},
@ -3613,7 +3613,7 @@ class V2C_Layer extends BDV2.reactComponent {
}
componentWillMount() {
$('[class*="layer-"]').animate({opacity: 0}, {
$('[class*="layer-"]').addClass("publicServersOpen").animate({opacity: 0}, {
step: function(now, fx) {
$(this).css("transform", `scale(${0.07*now + 0.93}) translateZ(0px)`);
},

2
js/main.min.js vendored

File diff suppressed because one or more lines are too long