aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-main/users/user-notifications.component.scss
blob: b69d4b5d6c51909dad50711a4f37e9d5ab4fe023 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                     






                          

                

                      
                              
                                                   
                         
 




                                          

                                   


                       

   
           




                       

                       
 

                 
 

                                  

     


                      
                                       


                      
                      
   
 
@import '_variables';
@import '_mixins';

.no-notification {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.notification {
  display: flex;
  align-items: center;
  font-size: inherit;
  padding: 15px 5px 15px 10px;
  border-bottom: 1px solid $separator-border-color;
  word-break: break-word;

  &.unread {
    background-color: rgba(0, 0, 0, 0.05);
  }

  my-global-icon {
    @include apply-svg-color(#333);

    width: 24px;
    margin-right: 11px;
    margin-left: 3px;
  }

  .avatar {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 5px;
    margin-right: 10px;
  }

  .message {
    flex-grow: 1;

    a {
      font-weight: $font-semibold;
    }
  }

  .from-date {
    font-size: 0.85em;
    color: pvar(--greyForegroundColor);
    padding-left: 5px;
    min-width: 70px;
    text-align: right;
    margin-left: auto;
  }
}