diff --git a/console/src/app/modules/table-actions/table-actions.component.scss b/console/src/app/modules/table-actions/table-actions.component.scss index 24f0095fc0..0604b7ad8b 100644 --- a/console/src/app/modules/table-actions/table-actions.component.scss +++ b/console/src/app/modules/table-actions/table-actions.component.scss @@ -17,7 +17,8 @@ display: flex; background-color: $card-background-color; transition: background-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - border: 1px solid $border-color; + border-top: 1px solid $border-color; + border-bottom: 1px solid $border-color; box-sizing: border-box; border-radius: 0.5rem; outline: none; @@ -33,6 +34,22 @@ justify-content: center; } + button:only-of-type { + border-left: 1px solid $border-color; + border-right: 1px solid $border-color; + border-radius: 0.5rem; + } + + button:first-of-type { + border-left: 1px solid $border-color; + border-radius: 0.5rem; + } + + button:last-of-type { + border-right: 1px solid $border-color; + border-radius: 0.5rem; + } + [hoveractions] { display: none; }