Skip to content

Commit

Permalink
fix: enterprise edition tag in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
elevatebart committed Feb 3, 2025
1 parent cf4b91f commit cb31959
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions ui/src/components/demo/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,22 @@
z-index: -2;
background-image: linear-gradient(138.8deg, #CCE8FE 0%, #CDA0FF 27.03%, #8489F5 41.02%, #CDF1FF 68.68%, #B591E9 94%, #CCE8FE 100%);
background-size: 200% 200%;
top: -2px;
bottom: -2px;
left: -2px;
right: -2px;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
animation: move-border 3s linear infinite;
}
.enterprise-tag::after{
z-index: -1;
background: $base-gray-200;
top: -1px;
left: -1px;
bottom: -1px;
right: -1px;
background: $base-gray-100;
top: 1px;
left: 1px;
bottom: 1px;
right: 1px;
html.dark & {
background: $base-gray-400;
}
Expand All @@ -92,14 +92,12 @@
.enterprise-tag{
position: relative;
background: $base-gray-200;
border: 1px solid transparent;
padding: 0 1rem;
padding: .125rem 1rem;
border-radius: 1rem;
display: inline-block;
z-index: 2;
html.dark &{
background: #FBFBFB26;
border-color: #FFFFFF;
}
.flare{
display: none;
Expand Down

0 comments on commit cb31959

Please sign in to comment.