Skip to content

Commit

Permalink
update audio component width
Browse files Browse the repository at this point in the history
  • Loading branch information
Puyodead1 committed Sep 12, 2023
1 parent ae9bdeb commit 854ed7f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/media/Audio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@ const Container = styled.div`
background-color: var(--background-secondary);
padding: 12px;
border-radius: 5px;
width: max-content;
flex: auto;
border: 1px solid var(--background-secondary-alt);
justify-content: space-between;
box-sizing: border-box;
max-width: 100%;
flex-direction: column;
min-width: 300px;
width: 420px;
@media only screen and (max-width: 420px) {
width: 100%;
}
`;

const AudioInfo = styled.div`
Expand Down

0 comments on commit 854ed7f

Please sign in to comment.