1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

Make marketing pages fully support dark mode (#2081)

This commit is contained in:
carlosmintfan
2025-02-01 17:03:09 -03:00
committed by GitHub
parent d3ae77cf8b
commit ce98145fb2
3 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@
{% for testimonial in group %}
{% assign person = people[i] %}
<div class="col-12">
<a href="#" class="card bg-light">
<a href="#" class="card bg-body">
<div class="card-body">
<div class="row mb-3">
<div class="col-auto">{% include "ui/avatar.html" person=person size="md" %}</div>

View File

@@ -806,7 +806,7 @@ $popover-body-color: inherit !default;
// Footer
$footer-padding-y: 2rem !default;
$footer-bg: $white !default;
$footer-bg: var(--#{$prefix}bg-surface) !default;
$footer-border-color: var(--#{$prefix}border-color) !default;
$footer-color: var(--#{$prefix}gray-500) !default;

View File

@@ -15,7 +15,7 @@ $pricing-card-width: 22rem;
flex: 1;
display: flex;
flex-direction: column;
background: $white;
background: var(--#{$prefix}bg-surface);
border: 1px solid $border-color;
padding: 2rem;
margin: 0 0 1rem;