Skip to content

Commit

Permalink
feat(ui): Limit widths of folder panel and logs modal to make it look…
Browse files Browse the repository at this point in the history
… better
  • Loading branch information
flawiddsouza committed Oct 14, 2024
1 parent a371c76 commit 3ca260e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/components/FolderPanel.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div width="600px" style="margin-left: 1rem; margin-right: 1rem; margin-top: 1rem;" v-if="collectionItem">
<div style="margin-left: 1rem; margin-right: 1rem; margin-top: 1rem; max-width: 600px;" v-if="collectionItem">
<div v-if="collectionItem._type === 'request_group'">
<div style="padding-bottom: 1rem"></div>
<div class="request-panel-tabs-context">
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/modals/LogsModal.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div v-if="showModalComp">
<modal :title="title" v-model="showModalComp">
<modal :title="title" v-model="showModalComp" height="70vh" width="55rem">
<table style="table-layout: fixed">
<tr v-for="(log, index) in consoleLogs" :key="index">
<td>
Expand Down

0 comments on commit 3ca260e

Please sign in to comment.