AniwatchPlus/src/stylesheets/enhancements/_watch2gether.scss
Serraniel 1cd2719833
Merge branch 'develop' into feature/#94-auto-resume-after-screenshot
# Conflicts:
#	src/javascript/index.js
#	src/stylesheets/aniwatchplus.scss
#	src/stylesheets/enhancements/_watch2gether.scss
2020-10-28 17:34:18 +01:00

28 lines
641 B
SCSS

.awp {
&-w2g {
&-chatCounter {
white-space: nowrap;
&-max {
animation: shake 0.1s ease-in-out 0.1s 3 alternate;
@keyframes shake {
from {
transform: rotate(3deg);
}
to {
transform-origin: center center;
transform: rotate(-3deg);
}
}
}
}
}
}
.material-icons {
// Fix icon position for room creator
&[aria-label="Room creator"] {
vertical-align: text-top;
}
}