From a41c9565f11e89f1a1c97d1248383b73600c2730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Mon, 12 May 2025 22:13:51 +0200 Subject: [PATCH] Remove unnecessary `!important` from body padding (#2357) --- .changeset/rude-shrimps-smile.md | 5 +++++ core/scss/layout/_core.scss | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/rude-shrimps-smile.md diff --git a/.changeset/rude-shrimps-smile.md b/.changeset/rude-shrimps-smile.md new file mode 100644 index 000000000..4883d9592 --- /dev/null +++ b/.changeset/rude-shrimps-smile.md @@ -0,0 +1,5 @@ +--- +"@tabler/core": patch +--- + +Remove unnecessary `!important` from body padding diff --git a/core/scss/layout/_core.scss b/core/scss/layout/_core.scss index fae3490f7..dae37a71b 100644 --- a/core/scss/layout/_core.scss +++ b/core/scss/layout/_core.scss @@ -7,7 +7,7 @@ body { position: relative; min-height: 100%; height: 100%; - padding: 0 !important; + padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;