Carlos Bronze

Results 18 comments of Carlos Bronze
trafficstars

Hi @AleksandrHovhannisyan do you have the final code for your post? Im trying to follow up on it but im getting `Expected positive integer for width but received 0 of...

my terminal got funky too. what was supposed to be white is now black on vscode's terminal. same text on windows terminal remains white. using powerlevel10k on zsh

have u guys considered adding uncss/purgecss?

oh hey! [i adapted](https://github.com/bronze/atlas) some configurations/ideas from https://github.com/budparr/hugopipes-tailwindcss/ for PurgeCSS and ended up making Uncss work (their docs did NOT help. thanks @budparr for the inspiration!) uncss and postcss-uncss as...

your `postcss.config.css` file helped a LOT. i could remove the postcss config call at layouts. ``` if ('production' === process.env.NODE_ENV) { plugins.push( require('postcss-uncss')({ html: ['layouts/**/*.html'], ignore: [], }) ); }...

I'm just inserting the image component with absolute positioning and object-fit behind my content. [[Github link]](https://github.com/bronze/digitalcanvas-com-br/blob/master/src/pages/index.astro) [[Live Link]](https://www.digitalcanvas.com.br/) I was a bit surprised after inserting the image that it didnt...

Hi again. Wanted to update astro and everything else to the latest version. Found out now image-tools is also inserting `style="position: relative; display: inline-block;"` into the `picture` element. Can i...

I was using the `` element as a background image and had to use `position: absolute !important;` on my image to make it work. i could probably just use the...

"Built-in styles" might be more inclusive. Do you think this could be an option or maybe a simplified component? Maybe this can be achieved via the API already.

Hi @RafidMuhymin ive tried just passing a "nocss" flag along with the img code to disable any css (currently working on Img and Picture. Wanted to know what you think....