Skip to content

Commit

Permalink
ItemView: Add divider line
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Jun 26, 2024
1 parent 43947f9 commit d61a541
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/client/views/ItemView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,12 @@ const topConcepts = computed(() => {
#conceptDetails {
grid-area: 3 / 2 / 6 / 3;
overflow-y: auto;
/* TODO: This is very hacky */
margin-left: 0;
padding-left: 2vw;
max-width: calc(600px + 2vw);
width: calc(100% - 2vw);
border-left: 1px solid var(--color-primary);
}
#schemeHeader, #searchInScheme, #conceptHierarchy, #conceptDetails {
margin-left: 2vw;
Expand All @@ -204,7 +210,7 @@ const topConcepts = computed(() => {
#conceptHierarchy, #conceptDetails {
margin-bottom: 20px;
}
#searchInScheme, #conceptHierarchy, #conceptDetails {
#searchInScheme, #conceptHierarchy {
max-width: 600px;
width: calc(100% - 4vw);
}
Expand Down

0 comments on commit d61a541

Please sign in to comment.