From f3f3c0025be9eeaddb23ff296b86f8570bfc8c24 Mon Sep 17 00:00:00 2001 From: samline Date: Thu, 27 Aug 2020 14:47:36 -0500 Subject: [PATCH] deprecated table-responsive in less files --- package.json | 2 +- readme.md | 4 ++-- src/less/miscellaneous/deprecated.less | 4 ++++ src/less/utility-classes/miscellaneous.less | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 244ae7e..daa2ae5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": false, "name": "shido", - "version": "3.1.0", + "version": "3.1.1", "description": "Build fast with Shido, a CSS framework for building custom designs without any annoying style or component you have to fight to override.", "repository": { "type": "git", diff --git a/readme.md b/readme.md index 9e00ec3..153b2c5 100644 --- a/readme.md +++ b/readme.md @@ -26,11 +26,11 @@ yarn add shido Before using CDN compilation, keep in mind that the customization of variables are not available without incorporating Shido in your build process. I recommend downloading the file and placing it in your projects directory for offline use or otherwise. ```html - + ``` ```html - + ``` ### Add shido to your project diff --git a/src/less/miscellaneous/deprecated.less b/src/less/miscellaneous/deprecated.less index e69de29..422a01c 100644 --- a/src/less/miscellaneous/deprecated.less +++ b/src/less/miscellaneous/deprecated.less @@ -0,0 +1,4 @@ +.table-responsive { + overflow: auto; + max-width: 100%; +} diff --git a/src/less/utility-classes/miscellaneous.less b/src/less/utility-classes/miscellaneous.less index 49699e1..f4a7454 100644 --- a/src/less/utility-classes/miscellaneous.less +++ b/src/less/utility-classes/miscellaneous.less @@ -107,7 +107,7 @@ a { } // table -.table-responsive { +.table-liquid { overflow: auto; max-width: 100%; }