Skip to content

Commit

Permalink
Merge pull request #504 from madeindjs/fix-380
Browse files Browse the repository at this point in the history
fix(ui): remove some overflow constraints
  • Loading branch information
ramedina86 authored Aug 12, 2024
2 parents c98d4c2 + 8ea372f commit 77c8d41
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/ui/src/core_components/layout/CoreSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ const fields = inject(injectionKeys.evaluatedFields);
<style scoped>
@import "../../renderer/sharedStyles.css";
.CoreSection {
overflow: hidden;
border: 1px solid var(--separatorColor);
border-radius: 8px;
box-shadow: var(--containerShadow);
Expand Down
4 changes: 2 additions & 2 deletions src/ui/src/core_components/layout/CoreSteps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ instanceData.at(-1).value = stepsData;
border: 1px solid var(--separatorColor);
border-radius: 8px;
background: var(--containerBackgroundColor);
overflow: hidden;
box-shadow: var(--containerShadow);
}
Expand All @@ -103,7 +102,8 @@ instanceData.at(-1).value = stepsData;
.container {
background: var(--containerBackgroundColor);
box-shadow: var(--containerShadow);
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.childless > .container {
Expand Down
3 changes: 2 additions & 1 deletion src/ui/src/core_components/layout/CoreTabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ instanceData.at(-1).value = { activeTab: undefined };
border-radius: 8px;
box-shadow: var(--containerShadow);
border: 1px solid var(--separatorColor);
overflow: hidden;
}
.tabSelector {
Expand All @@ -89,6 +88,8 @@ instanceData.at(-1).value = { activeTab: undefined };
.container {
background: var(--containerBackgroundColor);
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.childless > .container {
Expand Down

0 comments on commit 77c8d41

Please sign in to comment.