1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 16:38:31 +00:00
This was a small update until Twitch ripped out half their CSS.

* Added: Cross-Origin Storage Bridge for settings, better synchronizing settings on sub-domains with support for binary blobs at the cost of slightly increased start-up time.
* Fixed: Rendering issues caused by missing CSS.
* Fixed: FFZ Control Center button not appearing on dashboard pages, and appearing in the incorrect place.
* Changed: Work towards splitting modules into their own JS files for a faster, more asynchronous startup.
* API Added: Methods for serializing and deserializing Blobs for transmission across postMessage.
This commit is contained in:
SirStendec 2021-02-11 19:40:12 -05:00
parent 2c5937c8af
commit 264c375f13
88 changed files with 1685 additions and 500 deletions

View file

@ -0,0 +1,26 @@
@import "balloon";
.ffz-avatar {
background-color: inherit;
position: relative;
&--size-10 { height: 1rem; width: 1rem }
&--size-15 { width: 1.5rem; height: 1.5rem }
&--size-20 { width: 2rem; height: 2rem }
&--size-24 { width: 2.4rem; height: 2.4rem }
&--size-30 { width: 3rem; height: 3rem }
&--size-36 { width: 3.6rem; height: 3.6rem }
&--size-40 { width: 4rem; height: 4rem }
&--size-50 { width: 5rem; height: 5rem }
&--size-60 { width: 6rem; height: 6rem }
&--size-64 { width: 6.4rem; height: 6.4rem }
&--size-80 { width: 8rem; height: 8rem }
&--size-96 { width: 9.6rem; height: 9.6rem }
&--size-120 { width: 12rem; height: 12rem }
&--size-300 { width: 30rem; height: 30rem }
}
.ffz-image-avatar,
.ffz-avatar__img {
width: 100%;
}