Skip to content

Commit

Permalink
replaced metadata component borders with horizontal rule (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
crabinak authored Dec 9, 2024
1 parent 2d817b1 commit e641379
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
10 changes: 9 additions & 1 deletion beam/src/components/BeamMetadata.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
</div>
</slot>
</div>
<hr />
</div>
</template>

Expand All @@ -41,7 +42,6 @@ defineProps<{
.beam_metadata {
/* margin:3.125rem; */
box-sizing: border-box;
border: 1px solid black;
display: flex;
flex-direction: column;
max-height: 100vh;
Expand Down Expand Up @@ -99,6 +99,14 @@ defineProps<{
.beam_metadata_components {
overflow: scroll;
}
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid var(--sc-row-border-color);
margin: 1em 0;
padding: 0;
}
</style>
<style>
.beam_metadata_heading {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@stonecrop/beam",
"comment": "removed borders from metatdata and replzced with horizontal rule",
"type": "none"
}
],
"packageName": "@stonecrop/beam"
}

0 comments on commit e641379

Please sign in to comment.