Skip to content

Commit

Permalink
Merge pull request #306 from webitel/feature/update-divider-and-imple…
Browse files Browse the repository at this point in the history
…ment-icons

24.10.21: Fix display error on display flex vertical divider [WTEL-5102]
  • Loading branch information
Lera24 authored Sep 24, 2024
2 parents 56c1630 + a1ef864 commit 9f50914
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webitel/ui-sdk",
"version": "24.10.20",
"version": "24.10.21",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
9 changes: 7 additions & 2 deletions src/components/wt-divider/wt-divider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,21 @@ export default {
.wt-divider {
display: block;
box-sizing: border-box;
margin: 0;
padding: 0;
border-color: var(--divider-border-color);
&-vertical {
min-height: 100%;
display: flex;
position: relative;
justify-content: center;
width: 1px;
padding: var(--spacing-md) 0 0;
border-left: 0;
border-bottom: 0;
border-top: 0;
border-right-width: thin;
border-right: var(--divider-border-color) solid 1px;
}
&-horizontal {
Expand Down

0 comments on commit 9f50914

Please sign in to comment.