diff --git a/assets/vendor/bootstrap.css b/assets/vendor/bootstrap.css index 5695df74ac..c72243781a 100644 --- a/assets/vendor/bootstrap.css +++ b/assets/vendor/bootstrap.css @@ -5459,7 +5459,7 @@ button.bg-dark:focus { z-index: 1; pointer-events: auto; content: ""; - background-color: rgba(0, 0, 0, 0); } + background-color: transparent; } .m-0 { margin: 0 !important; } @@ -7058,6 +7058,9 @@ h1, h2, h3, h4, h5 { #main_content_wrapper { border-bottom: 1px solid #1B1818; } +.landing section:last-of-type { + border-bottom: none; } + .card-grid { display: grid; gap: 1px; @@ -7137,8 +7140,7 @@ h1, h2, h3, h4, h5 { /* Some styles that use the colors defined above ---------------------------- */ h1 a, h2 a, -h3 a, -.xrpl-footer h5 a { +h3 a { color: #1B1818; text-decoration: none; } @@ -7148,6 +7150,9 @@ h3 a:hover, .xrpl-footer h5 a:hover { color: #1B1818; } +.xrpl-footer h5 a { + color: #1B1818; } + .landing .curated-links a, .landing .children-display a, .landing a.card, @@ -7212,6 +7217,7 @@ h3 a:hover, color: #676463; } .xrpl-footer { + border-top: 1px solid #1B1818; border-bottom: 1px solid #1B1818; } .xrpl-footer .container-fluid { diff --git a/tool/xrpl.scss b/tool/xrpl.scss index 40a8e8a74c..6c0cb33eaa 100644 --- a/tool/xrpl.scss +++ b/tool/xrpl.scss @@ -85,6 +85,10 @@ h1, h2, h3, h4, h5 { border-bottom: 1px solid $black; } +.landing section:last-of-type { + border-bottom: none; +} + .card-grid { display: grid; gap: 1px; @@ -197,8 +201,7 @@ h1, h2, h3, h4, h5 { /* Some styles that use the colors defined above ---------------------------- */ h1 a, h2 a, -h3 a, -.xrpl-footer h5 a { +h3 a { color: $black; text-decoration: none; } @@ -209,6 +212,10 @@ h3 a:hover, color: $black; } +.xrpl-footer h5 a { + color: $black; +} + .landing .curated-links a, .landing .children-display a, .landing a.card, @@ -281,6 +288,7 @@ h3 a:hover, } .xrpl-footer { + border-top: 1px solid $black; border-bottom: 1px solid $black; } .xrpl-footer .container-fluid {