diff --git a/cypress/e2e/list/list.spec.ts b/cypress/e2e/list/list.spec.ts index 8c151328..f49c2039 100644 --- a/cypress/e2e/list/list.spec.ts +++ b/cypress/e2e/list/list.spec.ts @@ -59,7 +59,7 @@ describe('Lists', () => { .click() cy.get('#title') .type(`{selectall}${newListName}`) - cy.get('footer.modal-card-foot .button') + cy.get('footer.card-footer .button') .contains('Save') .click() diff --git a/cypress/e2e/list/namespaces.spec.ts b/cypress/e2e/list/namespaces.spec.ts index 2ede493f..6bcf8b23 100644 --- a/cypress/e2e/list/namespaces.spec.ts +++ b/cypress/e2e/list/namespaces.spec.ts @@ -63,7 +63,7 @@ describe('Namepaces', () => { .should('equal', newNamespaces[0].title) // wait until the namespace data is loaded cy.get('#namespacetext') .type(`{selectall}${newNamespaceName}`) - cy.get('footer.modal-card-foot .button') + cy.get('footer.card-footer .button') .contains('Save') .click() diff --git a/src/components/input/button.vue b/src/components/input/button.vue index cae9bc15..738cfa1a 100644 --- a/src/components/input/button.vue +++ b/src/components/input/button.vue @@ -69,9 +69,11 @@ const showIconOnly = computed(() => props.icon !== '' && typeof slots.default == text-transform: uppercase; font-size: 0.85rem; font-weight: bold; + height: auto; min-height: $button-height; box-shadow: var(--shadow-sm); display: inline-flex; + white-space: break-spaces; &:hover { box-shadow: var(--shadow-md); diff --git a/src/components/misc/card.vue b/src/components/misc/card.vue index 47ec9cde..7ca3a3df 100644 --- a/src/components/misc/card.vue +++ b/src/components/misc/card.vue @@ -16,11 +16,21 @@ -