Skip to content
Snippets Groups Projects
Commit 73493b5f authored by Alexandru Munteanu's avatar Alexandru Munteanu
Browse files

dropdown improvements

parent 30f1e365
No related branches found
No related tags found
No related merge requests found
...@@ -92,11 +92,11 @@ const User = styled.div` ...@@ -92,11 +92,11 @@ const User = styled.div`
const Dropdown = styled.div` const Dropdown = styled.div`
background-color: ${th('colorBackground')}; background-color: ${th('colorBackground')};
border: ${th('borderWidth')} ${th('borderStyle')} ${th('colorFurniture')}; border: ${th('borderWidth')} ${th('borderStyle')} ${th('colorBorder')};
position: absolute; position: absolute;
min-width: 150px;
right: 20px; right: 20px;
top: 70px; top: 60px;
width: calc(${th('gridUnit')} * 8);
z-index: 10; z-index: 10;
` `
...@@ -106,9 +106,9 @@ const DropdownOption = styled.div` ...@@ -106,9 +106,9 @@ const DropdownOption = styled.div`
cursor: pointer; cursor: pointer;
display: flex; display: flex;
justify-content: flex-start; justify-content: flex-start;
height: 34px; height: calc(${th('gridUnit')} * 2);
font-family: ${th('fontInterface')}; font-family: ${th('fontInterface')};
font-size: ${th('fontSizeBaseSmall')}; font-size: ${th('fontSizeBase')};
line-height: ${th('fontLineHeight')}; line-height: ${th('fontLineHeight')};
padding: 0 15px; padding: 0 15px;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment