Skip to content

Commit

Permalink
fix: add nowrap to icon names
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Mar 29, 2024
1 parent 9de5e93 commit 79b9918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const previewStyles = `
.theme-container.dark .divider { background: var(--dark-theme-font-color); }
.theme-container.light { color: var(--light-theme-font-color); background: var(--light-theme-bg-color); }
.theme-container.light .divider { background: var(--light-theme-font-color); }
.icon { display: grid; align-items: center; grid-template-columns: 16px auto; gap: 5px; }
.icon { display: grid; align-items: center; white-space: nowrap; grid-template-columns: 16px auto; gap: 5px; }
.icon.with-big-icon { grid-template-columns: 32px 16px 16px auto; }
.icon-preview { content: " "; background-size: 32px; background-position: 0; background-repeat: no-repeat; width: 32px; height: 32px; }
.divider { height: 75%; width: 1px; justify-self: center; border-radius: 16px; }
Expand Down

0 comments on commit 79b9918

Please sign in to comment.