We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 175e902 + 7519956 commit 90a4319Copy full SHA for 90a4319
packages/gui/src/view/pages/proxy.vue
@@ -166,8 +166,8 @@ export default {
166
<a-button type="primary" icon="plus" @click="addExcludeIp()" />
167
</a-col>
168
</a-row>
169
- <a-row v-for="(item, index) of excludeIpList" :key="index" :gutter="10">
170
- <a-col :span="17" class="fine-tuning">
+ <a-row v-for="(item, index) of excludeIpList" :key="index" :gutter="10" class="fine-tuning">
+ <a-col :span="17">
171
<MockInput v-model="item.key" />
172
173
<a-col :span="5">
@@ -218,3 +218,10 @@ export default {
218
</a-drawer>
219
</ds-container>
220
</template>
221
+
222
+<style lang="scss">
223
+/*样式微调*/
224
+.fine-tuning .ant-btn-danger {
225
+ margin-top: 3px;
226
+}
227
+</style>
0 commit comments