Skip to content

Commit

Permalink
deprecated table-responsive in less files
Browse files Browse the repository at this point in the history
  • Loading branch information
samline committed Aug 27, 2020
1 parent 1fbd773 commit f3f3c00
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<link href="https://unpkg.com/shido@^3.1.0/dist/css/shido.min.css" rel="stylesheet">
<link href="https://unpkg.com/shido@^3.1.1/dist/css/shido.min.css" rel="stylesheet">
```

```html
<link href="https://cdn.jsdelivr.net/npm/shido@^3.1.0/dist/css/shido.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/shido@^3.1.1/dist/css/shido.min.css" rel="stylesheet">
```

### Add shido to your project
Expand Down
4 changes: 4 additions & 0 deletions src/less/miscellaneous/deprecated.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.table-responsive {
overflow: auto;
max-width: 100%;
}
2 changes: 1 addition & 1 deletion src/less/utility-classes/miscellaneous.less
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ a {
}

// table
.table-responsive {
.table-liquid {
overflow: auto;
max-width: 100%;
}
Expand Down

0 comments on commit f3f3c00

Please sign in to comment.