Skip to content

Commit 4792102

Browse files
added -ve margin to hid the uifeedback input wrapper
1 parent 31ce713 commit 4792102

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

contentcuration/contentcuration/frontend/channelList/views/ChannelSet/StudioCollectionsTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@
268268
},
269269
270270
isSmallScreen() {
271-
return this.windowBreakpoint <= 1;
271+
return this.windowBreakpoint <= 2;
272272
},
273273
274274
handleOptionSelect(option, collectionId) {

contentcuration/contentcuration/frontend/settings/pages/Account/StudioCopyToken.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<template>
22

3-
<div :class="{ 'token-input-wrapper-small': isSmall() }">
3+
<div
4+
:class="{ 'token-input-wrapper-small': isSmall() }"
5+
class="token-wrapper"
6+
>
47
<div
58
v-if="show('loader', loading, 500)"
69
class="loader"
@@ -125,4 +128,8 @@
125128
margin-right: 0.5rem;
126129
}
127130
131+
.token-wrapper {
132+
margin-bottom: -32px;
133+
}
134+
128135
</style>

0 commit comments

Comments
 (0)