Skip to content

Commit fb5df91

Browse files
committed
Fix tab item size in the list
1 parent ad930a9 commit fb5df91

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/assets/css/general.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ select {
6161
.w-80 {
6262
width: 80%;
6363
}
64+
.w-60 {
65+
width: 60%;
66+
}
6467
input[type='button'] {
6568
background: #428bff;
6669
color: #fff;

src/components/TabItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Favicon :url="item.url" :type="typeOfUrl" />
44
<div class="ml-10 flex-grow-2">
55
<div class="first-block">
6-
<div class="w-80">
6+
<div :class="listType == TypeOfList.All ? 'w-60' : 'w-80'">
77
<p class="url" @click="openUrl(item.url)">{{ url }}</p>
88
<BadgeIcons :url="url" :type="typeOfUrl" :listType="listType" />
99
</div>

0 commit comments

Comments
 (0)