Skip to content

Commit

Permalink
tinting right pane for visual distinction
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandosborne committed Mar 13, 2024
1 parent fa9c082 commit d7046fb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion net/web/src/session/account/Account.styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const AccountWrapper = styled.div`
width: 100%;
display: flex;
flex-direction: column;
background-color: ${props => props.theme.selectedArea};
background-color: ${props => props.theme.itemArea};
color: ${props => props.theme.mainText};
.header {
Expand Down
6 changes: 3 additions & 3 deletions net/web/src/session/account/profile/Profile.styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const ProfileWrapper = styled.div`
flex-direction: column;
align-items: center;
overflow: hidden;
background-color: ${props => props.theme.selectedArea};
background-color: ${props => props.theme.itemArea};
.title {
font-size: 18px;
Expand Down Expand Up @@ -108,7 +108,7 @@ export const ProfileWrapper = styled.div`
align-items: center;
border-radius: 4px;
padding: 8px;
background-color: ${props => props.theme.selectedArea};
background-color: ${props => props.theme.itemArea};
.details {
align-items: center;
Expand All @@ -122,7 +122,7 @@ export const ProfileWrapper = styled.div`
.contentFill {
flex-grow: 1;
background-color: ${props => props.theme.selectedArea};
background-color: ${props => props.theme.itemArea};
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const AccountAccessWrapper = styled.div`
justify-content: center;
padding-bottom: 8px;
width: 100%;
background-color: ${props => props.theme.selectedArea};
background-color: ${props => props.theme.itemArea};
color: ${props => props.theme.mainText};
.account {
Expand Down Expand Up @@ -39,7 +39,7 @@ export const AccountAccessWrapper = styled.div`
.label {
padding-right: 16px;
min-width: 33%;
min-width: 35%;
height: 28px;
display: flex;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion net/web/src/session/details/Details.styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const DetailsWrapper = styled.div`
width: 100%;
display: flex;
flex-direction: column;
background-color: ${props => props.theme.selectedArea};
background-color: ${props => props.theme.itemArea};
color: ${props => props.theme.mainText};
.actions {
Expand Down

0 comments on commit d7046fb

Please sign in to comment.