Skip to content

Commit

Permalink
add box shadow for following and discover reader feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
Addison-Stavlo committed May 10, 2024
1 parent f433ff2 commit 3000034
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/reader/discover/discover-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const DiscoverStream = ( props ) => {
.layout__primary > div {
background: var( --color-surface );
border-radius: 8px;
box-shadow: none;
box-shadow: 0 0 17.4px 0 rgba( 0, 0, 0, 0.05 );
@media only screen and ( min-width: 600px ) {
height: calc( 100vh - var( --masterbar-height ) - 50px );
}
Expand Down
2 changes: 1 addition & 1 deletion client/reader/following/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function FollowingStream( { ...props } ) {
.layout__primary > div {
background: var( --color-surface );
border-radius: 8px;
box-shadow: none;
box-shadow: 0 0 17.4px 0 rgba( 0, 0, 0, 0.05 );
@media only screen and ( min-width: 600px ) {
height: calc( 100vh - var( --masterbar-height ) - 50px );
}
Expand Down

0 comments on commit 3000034

Please sign in to comment.