Skip to content
Snippets Groups Projects
Commit 4753f0b1 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Don't force a font-weight on the text

Just use the inherited one set by the user.
parent f8d00542
No related branches found
No related tags found
No related merge requests found
...@@ -85,6 +85,10 @@ class LanguageSelect extends LitElement { ...@@ -85,6 +85,10 @@ class LanguageSelect extends LitElement {
return css` return css`
${commonStyles.getThemeCSS()} ${commonStyles.getThemeCSS()}
:host {
display: inline-block;
}
a:hover { a:hover {
background-color: var(--vpu-dark); background-color: var(--vpu-dark);
color: var(--vpu-light); color: var(--vpu-light);
...@@ -92,11 +96,10 @@ class LanguageSelect extends LitElement { ...@@ -92,11 +96,10 @@ class LanguageSelect extends LitElement {
} }
a { a {
padding: 5px; padding: 0.3em;
display: inline-block; display: inline-block;
text-decoration: none; text-decoration: none;
transition: background-color 0.15s, color 0.15s; transition: background-color 0.15s, color 0.15s;
font-weight: 300;
color: var(--vpu-dark); color: var(--vpu-dark);
border-radius: var(--vpu-border-radius); border-radius: var(--vpu-border-radius);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment