css: Use SCSS nesting for `.screen .message-feed`.

This commit is contained in:
SiddharthVarshney 2020-07-13 07:32:03 +05:30 committed by Tim Abbott
parent 9b2b5ef3c2
commit db3530d984
1 changed files with 13 additions and 11 deletions

View File

@ -1124,20 +1124,22 @@ nav {
}
}
.screen .message-feed .message .content {
margin-left: 24px;
position: relative;
top: -15px;
}
.screen .message-feed {
.message .content {
margin-left: 24px;
position: relative;
top: -15px;
}
.screen .message-feed .stream {
padding: 3px 5px 0px 5px;
margin: 0px 5px;
.stream {
padding: 3px 5px 0px 5px;
margin: 0px 5px;
background-color: hsl(0, 0%, 100%);
border-radius: 4px;
background-color: hsl(0, 0%, 100%);
border-radius: 4px;
box-shadow: 0px 0px 15px hsla(0, 0%, 0%, 0.01);
box-shadow: 0px 0px 15px hsla(0, 0%, 0%, 0.01);
}
}
.portico-landing.hello .screen.hero-screen {