Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIRE-804 edit room buttons #294

Merged
merged 1 commit into from
Nov 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/components/room/controlSidebar/ControlSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,9 @@ const Container = styled.div<{ backgroundColor: string }>`
background-color: ${({ backgroundColor }) => backgroundColor};
cursor: pointer;
box-shadow: 0px 4px 59px rgba(50, 50, 71, 0.3);
&:hover {
svg {
opacity: 0.7;
}
}
`;
3 changes: 3 additions & 0 deletions src/components/room/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,7 @@ const Button = styled.button`
padding: 1rem 2rem;
font-size: 1.7rem;
min-width: 11.7rem;
&:hover {
background-color: rgba(255, 255, 255, 0.1);
}
`;
3 changes: 3 additions & 0 deletions src/components/room/header/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,7 @@ const Component = styled.div`

const Button = styled.button`
cursor: pointer;
&:hover {
opacity: 0.7;
}
`;
5 changes: 5 additions & 0 deletions src/components/room/header/Theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ const VolumeControl = styled.div<{ volume: number; youtubeModal: boolean }>`
const Volume = styled.button<{ youtubeModal: boolean }>`
cursor: ${(props) => (props.youtubeModal ? 'default' : 'pointer')};
margin-left: 1.4rem;
&:hover {
svg {
opacity: 0.7;
}
}
`;

const Container = styled.div`
Expand Down
3 changes: 3 additions & 0 deletions src/components/room/sideBar/Information.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ const ControlSidebar = styled.div`
gap: 0.9rem;
cursor: pointer;
z-index: 999;
&:hover {
opacity: 0.7;
}
`;

const RoomTitle = styled.div`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,7 @@ const Container = styled.div`

const Close = styled.button`
cursor: pointer;
&:hover {
opacity: 0.7;
}
`;
5 changes: 4 additions & 1 deletion src/components/room/sideProfileModal/UserInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,13 @@ const Container = styled.div`
height: 4.8rem;
display: flex;
align-items: center;
width: fit-content;
gap: 1.2rem;
width: 100%;
font-weight: 500;
font-size: 2.4rem;
line-height: 3.6rem;
color: #f9fafb;
&:hover {
text-decoration: underline;
}
`;