Something you can't unsee

image

As a web-designer person myself, I like to see how well the site is designed, and to be fair, this extra trapezoid addition is pretty good. BUT WHY DOESNT IT ALIGN UP PROPERLY? Snap/Scratch blocks are like Lego, intended to get attached together.

not really a bug, but a once-you-see-it-you-can't-unsee-it thing.

:exploding_head: :exploding_head::exploding_head:

Yeah, I know. :slight_smile:

Some of these little bugs are more trouble than their worth...

I can try to fix it myself. I just need to make some '>' CSS, and that should be pretty easy (prob)

well, that was easy
image

put this css into the stylus extension or something, and it should be proper.

#footer {
    padding-left: 0px;
    padding-right: 0px;
}

or much better, modify the existing style from this

#footer {
    background: #2d3142;
    padding: 1em;
    color: #ffffff;
    margin-top: 3em;
    flex-shrink: 0;
    font-size: 0.75em;
}

to this

#footer {
    background: #2d3142;
    padding-block: 1em;
    color: #ffffff;
    margin-top: 3em;
    flex-shrink: 0;
    font-size: 0.75em;
}

(change padding to padding-block)

padding-block is basically just a shorthand to padding-top: ; padding-bottom: ;

oh, thanks for the tip! I never knew padding-block existed! (even if I am writing CSS for four years)