From a4ca7993b590eae370dd4ba2e9d6f1390fa16f2a Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Sat, 21 Oct 2023 08:20:03 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Classname=20tweak?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pagetop/src/base/component.rs | 2 +- pagetop/static/base/css/flex.css | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pagetop/src/base/component.rs b/pagetop/src/base/component.rs index a2da38cc..4fa00504 100644 --- a/pagetop/src/base/component.rs +++ b/pagetop/src/base/component.rs @@ -67,7 +67,7 @@ pub enum BreakPoint { impl ToString for BreakPoint { fn to_string(&self) -> String { match self { - BreakPoint::None => "pt-bp__no".to_string(), + BreakPoint::None => "pt-bp__none".to_string(), BreakPoint::SM => "pt-bp__sm".to_string(), BreakPoint::MD => "pt-bp__md".to_string(), BreakPoint::LG => "pt-bp__lg".to_string(), diff --git a/pagetop/static/base/css/flex.css b/pagetop/static/base/css/flex.css index 42b1d27f..f3ddc9c4 100644 --- a/pagetop/static/base/css/flex.css +++ b/pagetop/static/base/css/flex.css @@ -10,19 +10,19 @@ padding: 0 !important; } .pt-flex__row, -.pt-flex__col.pt-bp__no { +.pt-flex__col.pt-bp__none { flex-direction: column; } .pt-flex__row.pt-flex__reverse, -.pt-flex__col.pt-flex__reverse.pt-bp__no { +.pt-flex__col.pt-flex__reverse.pt-bp__none { flex-direction: column-reverse; } .pt-flex__col, -.pt-flex__row.pt-bp__no { +.pt-flex__row.pt-bp__none { flex-direction: row; } .pt-flex__col.pt-flex__reverse, -.pt-flex__row.pt-flex__reverse.pt-bp__no { +.pt-flex__row.pt-flex__reverse.pt-bp__none { flex-direction: row-reverse; }