TailwindCSS issues

Somehow TailwindCSS does interfear with the isso CSS.

Around the up/down voting icons and the spacer separating them TailwindCSS added linebreaks. I had to add following lines to style.css

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
  /* Target the footer container */
  .isso-comment-footer {
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically center items */
    gap: 0.5rem; /* Add spacing between items */
  }

  /* Ensure SVG icons are aligned properly */
  .isso-upvote svg,
  .isso-downvote svg {
    display: inline-block;
    vertical-align: middle; /* Align icons with text */
  }

  /* Optional: Style the spacer */
  .isso-spacer {
    margin: 0 0.25rem; /* Add spacing around the spacer */
  }
TailwindCSS