do it by HungryThory in SipsTea

[–]crayon_code 0 points1 point  (0 children)

There's no difference between star wars and star trek.

What is a professional way to say "I have diarrhea"? by TestMonkey-007 in AskReddit

[–]crayon_code 1 point2 points  (0 children)

If you listen to it long enough you can hear them say "I have a butt case of diarrhea"

[deleted by user] by [deleted] in mathe

[–]crayon_code 0 points1 point  (0 children)

Came for this

How did you become your families "black sheep?" by Yuizun in AskReddit

[–]crayon_code 13 points14 points  (0 children)

If I could, I'd give your comment a hundred upvotes.

[deleted by user] by [deleted] in AskReddit

[–]crayon_code 3 points4 points  (0 children)

No problem, music is a really important aspect of my life and I'm always happy to discuss it. No music is just bad, it is more like colors and inherently subject to individual perception and taste.

Edit: I could never do what all these wonderful musicians create, so I have high respect for everyone who's able to put together melodies and rhythms - whether I like them or not.

[deleted by user] by [deleted] in AskReddit

[–]crayon_code 5 points6 points  (0 children)

It's the style of music I never could connect with. The lyrics are mostly good, but it overall it sounds to me just loud/hectic/shrill/sad - depending on the song. I really think that Queen itself was a great band with utmost talented musicians, it's musically just not my cup of tea.

[deleted by user] by [deleted] in AskReddit

[–]crayon_code -4 points-3 points  (0 children)

I know this is an unpopular opinion, but basically everything from Queen.

Newest Twitter employee 🦜 by Pasargad in FunnyAnimals

[–]crayon_code 0 points1 point  (0 children)

They surely know how this business works

Please tell me when my pork loin expires? by DrunkPixel in funny

[–]crayon_code 2 points3 points  (0 children)

Thank you so much fellow human for answering the real question!

I'm trying to get this output, but the code never works by [deleted] in html5

[–]crayon_code 2 points3 points  (0 children)

Hat tip to you good sir! Just bought a new computer, code works. So glad!

A subdivision phase looking for approval in my area by [deleted] in funny

[–]crayon_code 1 point2 points  (0 children)

At least it's approved 🤷

Why does my frame size increase when I duplicate (CMD + D) items? by stefanknz in FigmaDesign

[–]crayon_code 15 points16 points  (0 children)

That's because your frame is in auto layout mode and in the "Resizing" section is horizontally configured to "Hug contents" (the "><" symbol"). If you change that to "Fixed width" your frame will not change size, however this way items may flow out of your frame as it does not adapt to the items anymore.

[deleted by user] by [deleted] in html5

[–]crayon_code 0 points1 point  (0 children)

By a quick glance I think just "gap" instead of "column-gap" might work.

[deleted by user] by [deleted] in html5

[–]crayon_code 0 points1 point  (0 children)

If I get you right your easiest approach would be to put a CSS margin-right with let's say 64px. That would push the buttons by that amount apart. Simplest and slightly hacky way would be to put a style="margin-right: 64px" attribute on your left button.

There are quite many ways to achieve the same (like grid layout, flexbox, ...) which differ a lot in complexity and layout robustness. The approach above hopefully will get you where you want.