We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad930a9 commit fb5df91Copy full SHA for fb5df91
src/assets/css/general.css
@@ -61,6 +61,9 @@ select {
61
.w-80 {
62
width: 80%;
63
}
64
+.w-60 {
65
+ width: 60%;
66
+}
67
input[type='button'] {
68
background: #428bff;
69
color: #fff;
src/components/TabItem.vue
@@ -3,7 +3,7 @@
3
<Favicon :url="item.url" :type="typeOfUrl" />
4
<div class="ml-10 flex-grow-2">
5
<div class="first-block">
6
- <div class="w-80">
+ <div :class="listType == TypeOfList.All ? 'w-60' : 'w-80'">
7
<p class="url" @click="openUrl(item.url)">{{ url }}</p>
8
<BadgeIcons :url="url" :type="typeOfUrl" :listType="listType" />
9
</div>
0 commit comments