Will Browar
banner
wbrowar.com
Will Browar
@wbrowar.com
Professional programmer (Front-end Development Lead) 👨🏻‍💻, long-time drummer 🥁, aspiring woodworker 🪚, forever photography student 📸, Craft CMS plugin programmer 🥃

https://wbrowar.com
The CSS to make the chonky bar looks like this:

```
admin-bar {
--admin-bar-height: max-content;

&::part(avatar) {
border-radius: 5px;
width: 50px;
}
&::part(buttons) {
flex-flow: row wrap;
overflow: auto;
}

& > * {
--admin-bar-height: 43px;
}
}
```
November 8, 2025 at 4:33 PM
The buttons section is a flexbox container and an exposed "part", so feel free to mess with alignment, gap, or any other flex property. Then working with Admin Bar Component's CSS Custom Properties can tweak other things like button sizes.
November 8, 2025 at 4:33 PM
This year was a success! A little on the salty side, but overall we got 4 tasty batches. I asked my younger kid for flavor ideas and we went with two types of BBQ sauce, our usual cayenne/sugar, and for the wildcard we did a vanilla flavor using vanilla extract.
October 21, 2025 at 12:44 PM
The progress bar is now customizable in that you can pick the colors for the 3 states (progress, success, and failure) and you can set the height of the progress bar.

You can change these in the Admin Bar plugin settings page, or in your front-end CSS.
October 9, 2025 at 1:37 PM
If the full bar color is too much, the height of the bar is adjustable in CSS. Also, the colors of the 3 states (blue, green, and red) are customizable to fit with your website's branding 💅
October 6, 2025 at 10:12 PM