Skip to content

Commit

Permalink
Fix: UI bug
Browse files Browse the repository at this point in the history
  • Loading branch information
choar816 committed Jul 9, 2023
1 parent 170485f commit bd1f819
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import styled from "styled-components";
import styled from 'styled-components';

export const Container = styled.article`
justify-self: center;
Expand Down Expand Up @@ -33,11 +33,18 @@ export const Desc = styled.p`
margin-top: 16px;
font-size: 16px;
line-height: 22px;
width: 300px;
color: #767676;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
@media screen and (max-width: 768px) {
margin-top: 12px;
font-size: 12px;
line-height: 18px;
width: 200px;
}
`;

Expand Down

0 comments on commit bd1f819

Please sign in to comment.