Add basic notification support.
This commit is contained in:
parent
e1c5030311
commit
e8c85434b7
5 changed files with 85 additions and 3 deletions
32
src/components/notifications/notifications.scss
Normal file
32
src/components/notifications/notifications.scss
Normal file
|
@ -0,0 +1,32 @@
|
|||
.notification {
|
||||
padding: 0.5em;
|
||||
padding-left: 1em;
|
||||
display: flex;
|
||||
border-bottom: 1px solid silver;
|
||||
|
||||
.text {
|
||||
h1 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
padding-left: 0.5em;
|
||||
p {
|
||||
margin: 0;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
}
|
||||
|
||||
.avatar {
|
||||
padding-top: 3px;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
border: none
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue