stdaph
July 21, 2023, 1:51pm
1
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.
Yeah, I know.
Some of these little bugs are more trouble than their worth...
stdaph
July 22, 2023, 11:44am
4
I can try to fix it myself. I just need to make some '>' CSS, and that should be pretty easy (prob)
stdaph
July 22, 2023, 11:46am
5
well, that was easy
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: ;
stdaph
July 23, 2023, 4:33am
7
oh, thanks for the tip! I never knew padding-block existed! (even if I am writing CSS for four years)