From dd641cb16464d856026853ee46f2fa9ba0472b42 Mon Sep 17 00:00:00 2001 From: M Fahru Date: Wed, 25 May 2022 10:53:17 -0400 Subject: [PATCH] Remove excess border between the tab in new plans page top switch (#8121) GitOrigin-RevId: 5dcd86bd8c0437678b37670c557fa18f266745bb --- services/web/frontend/stylesheets/app/plans-v2.less | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/services/web/frontend/stylesheets/app/plans-v2.less b/services/web/frontend/stylesheets/app/plans-v2.less index 5485d754b4..7e79d20ac7 100644 --- a/services/web/frontend/stylesheets/app/plans-v2.less +++ b/services/web/frontend/stylesheets/app/plans-v2.less @@ -17,15 +17,20 @@ justify-content: center; li { - border: solid 1px @ol-blue-gray-3; + border-top: 1px solid @ol-blue-gray-3; + border-bottom: 1px solid @ol-blue-gray-3; height: @plans-v2-top-switch-item-height; &.plans-v2-top-switch-individual { + border-right: 1px solid @ol-blue-gray-3; + border-left: 1px solid @ol-blue-gray-3; border-top-left-radius: @plans-v2-top-switch-item-border-radius; border-bottom-left-radius: @plans-v2-top-switch-item-border-radius; } &.plans-v2-top-switch-student { + border-right: 1px solid @ol-blue-gray-3; + border-left: 1px solid @ol-blue-gray-3; border-top-right-radius: @plans-v2-top-switch-item-border-radius; border-bottom-right-radius: @plans-v2-top-switch-item-border-radius; }