The complete migration from `minecraft-assets` to [`mc-assets`](https://npmjs.com/mc-assets). Now all block states & block models are processed dynamically! So it is now easily possible to implement custom models - no post-install work anymore: the building is now 3x faster and 4x faster in docker - drop 10x total deploy size - display world ~1.5x faster - fix snow & repeater state parser (they didn't render correctly) rsbuild pipeline! - the initial app load is faster ~1.2 - much fewer requests are made & cached - dev reloads are fast now Resource pack changes: - now textures are reloaded much more quickly on the fly - add hotkey to quickly reload textures (for debugging) assigned to F3+T (open dev widget is now assigned to F3+Y) - add a way to disable resource pack instead of uninstalling it - items render from resource pack are now support - resource pack widgets & icons are now supported
34 lines
544 B
CSS
34 lines
544 B
CSS
.bossBars {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
position: absolute;
|
|
top: 9px;
|
|
left: 50%;
|
|
transform: translate(-50%);
|
|
}
|
|
|
|
.bossbar-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.bossbar-title {
|
|
font-size: 7px;
|
|
color: #fff;
|
|
}
|
|
.bossbar {
|
|
background-image: var(--bars-gui-atlas);
|
|
width: 182px;
|
|
height: 5px;
|
|
position: relative;
|
|
}
|
|
.bossbar .fill {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 5px;
|
|
width: 0;
|
|
background-image: var(--bars-gui-atlas);
|
|
}
|