Skip to content
Snippets Groups Projects
Commit 1b389fa7 authored by Chris Lawton's avatar Chris Lawton Committed by Todd Dembrey
Browse files

pop up activity feed styles

parent 6bcc8cca
No related branches found
No related tags found
No related merge requests found
.activity-feed {
position: fixed;
top: 140px;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
opacity: 0;
transition: top, opacity, $transition;
&.is-open {
top: 0;
z-index: 20;
width: 100%;
height: 100vh;
background: $color--white;
opacity: 1;
transition: opacity, top, $transition;
}
&__header {
text-align: center;
background-color: $color--default;
}
&__heading {
display: flex;
align-items: center;
justify-content: center;
padding: 20px 0;
color: $color--white;
}
}
......@@ -11,6 +11,7 @@
@import 'base/typography';
// Components
@import 'components/activity-feed';
@import 'components/button';
@import 'components/grid';
@import 'components/heading';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment