Skip to content

Commit

Permalink
Address align-items, justify-content css warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Oct 18, 2024
1 parent 40b13c9 commit 561b997
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion client/src/components/History/Export/HistoryExport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ function updateExportParams(newParams: ExportParams) {
<style scoped>
.zenodo-info {
display: flex;
align-items: start;
align-items: flex-start;
gap: 0.5rem;
}
</style>
4 changes: 2 additions & 2 deletions client/src/components/Sharing/Embeds/WorkflowEmbed.vue
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ const clipboardTitle = computed(() => (copied.value ? "Copied!" : "Copy URL"));
.settings {
flex: 1;
display: flex;
align-items: start;
justify-content: start;
align-items: flex-start;
justify-content: flex-start;
flex-direction: column;
}
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Workflow/Editor/Tools/ToolBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ const { anySelected, selectedCountText, deleteSelection, deselectAll, duplicateS
display: flex;
padding: 0.25rem;
gap: 0.25rem;
align-items: end;
align-items: flex-end;
flex-direction: column-reverse;
align-self: flex-start;
Expand Down
10 changes: 5 additions & 5 deletions client/src/components/Workflow/List/WorkflowCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ async function onTagClick(tag: string) {
.workflow-card-footer {
display: flex;
justify-content: space-between;
align-items: end;
align-items: flex-end;
.workflow-card-tags {
max-width: 60%;
Expand All @@ -313,7 +313,7 @@ async function onTagClick(tag: string) {
gap: 0.25rem;
margin-top: 0.25rem;
align-items: center;
justify-content: end;
justify-content: flex-end;
}
}
Expand All @@ -335,21 +335,21 @@ async function onTagClick(tag: string) {
@container workflow-card (min-width: #{$breakpoint-sm}, max-width: #{$breakpoint-md}) {
.workflow-card-actions {
justify-content: end;
justify-content: flex-end;
}
}
}
@container workflow-card (max-width: #{$breakpoint-md}) {
.workflow-count-actions {
align-items: baseline;
justify-content: end;
justify-content: flex-end;
}
}
@container workflow-card (min-width: #{$breakpoint-md}) {
.workflow-count-actions {
align-items: end;
align-items: flex-end;
flex-direction: column-reverse;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ onMounted(async () => {
grid-column: 1 / span 3;
display: flex;
justify-content: end;
justify-content: flex-end;
}
.workflow-preview {
Expand Down

0 comments on commit 561b997

Please sign in to comment.