Skip to content

Commit

Permalink
ktl-1332 fix: fix styles overlap and add max and min values (#3909)
Browse files Browse the repository at this point in the history
  • Loading branch information
krutilov authored and berezinant committed Nov 28, 2024
1 parent 4145147 commit 85d6240
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@
*/
@import '../_tokens/index';

:root {
--dokka-logo-height: 28px;
--dokka-logo-width: 28px;
}

.library-name--link {
display: flex;
align-items: center;
Expand All @@ -32,8 +27,10 @@
}

.library-name--link::before {
width: var(--dokka-logo-height);
height: var(--dokka-logo-width);
width: var(--dokka-logo-width);
height: var(--dokka-logo-height);
max-width: 120px;
max-height: 36px;
margin-right: var(--size-s2);

content: '';
Expand Down

0 comments on commit 85d6240

Please sign in to comment.