jfrome1 / NTW2029

https://ntw-2029.vercel.app
0 stars 1 forks source link

Fix nutshell style errors. #12

Closed JojokCreator closed 1 week ago

JojokCreator commented 2 weeks ago

fix Nutshell links line break--links with text in them have a line break after the first word (see :formatting guidelines link on guidelines.md) ✅remove space between Nutshell bulleted lists ✅ fix button spacing for close button at bottom of Nutshells (currently it's too short, so hard to click links on last line of bubble text) ✅ fix text wrap for table cells and for code blocks in Nutshells

Fix;

Inside ./src/styles/custom.css adjust these lines

For space between bullets

.nutshell-bubble li {
    margin-bottom: 0.1em;
}

For space between close button

.nutshell-bubble-overflow-section {
    margin-bottom: 1em; ///Add this
}

For table fix

table {
    max-width: 560px;
    white-space: normal;
}

To add letters to ordered lists

ol ol {
    list-style-type: lower-alpha;
}
}