Skip to content

Commit

Permalink
Rework UI
Browse files Browse the repository at this point in the history
  • Loading branch information
FreaKzero committed Apr 10, 2020
1 parent 7ab9774 commit 977dd5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion app/client/components/Mods/ModItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ const Content = styled.div`
}
h1 {
white-space: nowrap;
transition: ${({ theme }) => theme.transition.out};
font-size: 18px;
margin-top: 5px;
margin-bottom: 5px;
text-transform: uppercase;
}
Expand Down Expand Up @@ -54,15 +56,16 @@ const IconContainer = styled.div`
`;

const ItemStyle = styled.div`
overflow: hidden;
background: ${({ theme }) => theme.color.backdrop};
border-radius: ${({ theme }) => theme.border.radius};
border: 1px solid ${({ theme }) => theme.border.idle};
transition: ${({ theme }) => theme.transition.out};
padding: 10px;
height: 50px;
display: flex;
margin-bottom: 5px;
user-select: none;
margin-bottom: 5px;
&:hover {
border: 1px solid ${({ theme }) => theme.border.active};
Expand Down
1 change: 0 additions & 1 deletion app/client/components/Mods/TagList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import styled from 'styled-components';

const Tags = styled.ul`
user-select: none;
height: 65px;
list-style: none;
display: inline-block;
`;
Expand Down

0 comments on commit 977dd5a

Please sign in to comment.