Skip to content

Commit

Permalink
Update Tags
Browse files Browse the repository at this point in the history
  • Loading branch information
vinimarcili committed Sep 12, 2022
1 parent 04de1f1 commit 8462bbe
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/css/squid-minor.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/squid-minor.min.css.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/css/squid.css
Original file line number Diff line number Diff line change
Expand Up @@ -45868,11 +45868,13 @@ a {
border: 1px solid var(--border_color);
transition: all 0.3s ease;
cursor: pointer;
padding: 0.6666666667rem;
padding: 0.25rem 0.5rem;
font-weight: 700;
position: relative;
display: inline-block;
background-color: var(--background);
font-size: 0.9rem;
line-height: 1;
}
.tag-box.readonly-tag {
cursor: default;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/squid.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/squid.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squidit/css",
"version": "1.3.74",
"version": "1.3.75",
"scripts": {
"prepare": "npm install -g husky eslint sass gulp uglify-js && husky install",
"start": "gulp watch",
Expand Down
4 changes: 3 additions & 1 deletion src/docs/public/css/squid.css
Original file line number Diff line number Diff line change
Expand Up @@ -45868,11 +45868,13 @@ a {
border: 1px solid var(--border_color);
transition: all 0.3s ease;
cursor: pointer;
padding: 0.6666666667rem;
padding: 0.25rem 0.5rem;
font-weight: 700;
position: relative;
display: inline-block;
background-color: var(--background);
font-size: 0.9rem;
line-height: 1;
}
.tag-box.readonly-tag {
cursor: default;
Expand Down
5 changes: 3 additions & 2 deletions src/scss/components/_tag.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
border: 1px solid var(--border_color);
transition: $transition;
cursor: pointer;
padding: math.div($gutter, 1.5);
// padding-right: ($gutter * 2.5);
padding: 0.25rem 0.5rem;
font-weight: 700;
position: relative;
display: inline-block;
background-color: var(--background);
font-size: 0.9rem;
line-height: 1;
&:hover {
@extend .box-shadow;
}
Expand Down

0 comments on commit 8462bbe

Please sign in to comment.