Could not find how to put space between the bullet and item in the lists, any suggestions?
at33v
@at33vAll comments
- @TinaMoofSubmitted 10 months ago
- @flaviare1sSubmitted 10 months ago
I did the challenge using Tailwind. I had difficulty with backgroud-image.
@at33vPosted 10 months agoHello, in your
output.css
file, there is no class for the background. Perhaps you forgot to run the CLI.You can add a background in various ways, here are a few of them:
- Tailwind class
bg-[url('../images/bg-pattern-top-desktop.svg'),url('../images/bg-pattern-bottom-desktop.svg')]
- Tailwind config
'pattern-desktop': "url('../images/bg-pattern-top-desktop.svg'), url('../images/bg-pattern-bottom-desktop.svg')",
- Custom class
@layer components { .my-custom-style { background-image: url('../images/bg-pattern-top-desktop.svg'), url('../images/bg-pattern-bottom-desktop.svg'); background-repeat: no-repeat; background-position: left top, right bottom; } }
Marked as helpful0 - Tailwind class
- @cchiversSubmitted 10 months ago
I need some help with the responsiveness of this site. Desktop was not that bad, but dealing with the mobile version I am cutting off the first element a little and if I resize the page then I can cut off more. How can I bring the element down? I don't know if this is cause of my code and I am doing this or if I should be setting something. Any help will be appreciative.
@at33vPosted 10 months agoHello, try doing the following:
- Replace
height: 100vh
withmin-height: 100vh
on thebody
element.
0 - Replace
- @j-lrSubmitted 10 months ago
Responsive design mode on safari on macOS contains minor horizontal scroll for iPhoneSE but on chrome (on same macOS) for iPhoneSE dimensions no horizontal scrolling is present, so I am confused which one is correct?
@at33vPosted 10 months agoHello, try doing the following:
- Reduce the gap(
gap-16
) on the element with the identifierid
The issue is that a large gap is possibly pushing the content, causing a scroll bar to appear.
Marked as helpful0 - Reduce the gap(
- @aseptimuSubmitted 10 months ago
I have a gap when it is 2 card in row. How can i avoid it?
@at33vPosted 10 months agoHello, try doing the following:
- Remove
margin: auto
from the.card
class - Add
justify-content: center
to themain
element
1 - Remove