Skip to content

Commit 1d4e63f

Browse files
committed
Fix height of tabs in compare page
If regressions were too large, the text did overflow previously. Now the height is set to `min-height`, so the tab header will be expanded as needed.
1 parent 9468231 commit 1d4e63f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/frontend/src/pages/compare/tabs.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ const activeTab: Ref<Tab> = ref(props.initialTab);
141141
flex-direction: column;
142142
position: relative;
143143
width: 200px;
144-
height: 60px;
144+
min-height: 60px;
145145
padding: 5px;
146146
text-align: center;
147147
border: 2px dotted #cccccc;

0 commit comments

Comments
 (0)