Skip to content

Commit

Permalink
docs: comments on bootstrap 4 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
tuliomir committed Aug 20, 2024
1 parent be2282b commit 3a78199
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ html, body, #root {
height: 100%;
width: 100%;
word-wrap: break-word;

// Keeping the same font family from Bootstrap 4
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a {
color: $purpleHathor;
text-decoration: none;
text-decoration: none; // Keeping style from Bootstrap 4
}

a:hover {
Expand Down Expand Up @@ -207,6 +209,7 @@ tr.tr-title {
cursor: default !important;
}

// Class to keep the same visual aspect from Bootstrap 4
.table {
thead {
tr {
Expand All @@ -218,13 +221,13 @@ tr.tr-title {
}

tbody {
tr.tr-title td { // Trying to fix table header background color
tr.tr-title td {
background-color: rgb(242,242,242);
cursor: default !important;
}

td {
padding: 12px; // The default on Bootstrap 5 is 0.5rem
padding: 12px;
}
}
}
Expand Down

0 comments on commit 3a78199

Please sign in to comment.