client/src/scss/components/_Session.scss
changeset 191 3f71ad81a5a9
parent 174 ac1a026edd58
equal deleted inserted replaced
190:01ad654237d5 191:3f71ad81a5a9
       
     1 @import 'bootstrap/scss/functions';
       
     2 @import 'bootstrap/scss/variables';
       
     3 
       
     4 .session-container {
       
     5 position: absolute;
       
     6 top: 4rem;
       
     7 bottom: 0;
       
     8 left: 0;
       
     9 right: 0;
       
    10 display: flex;
       
    11 flex-direction: column;
       
    12 // justify-content: flex-end;
       
    13 justify-content: flex;
       
    14 overflow-y: hidden;
       
    15     .session-notes {
       
    16         overflow-y: hidden;
       
    17         width: 100%;
       
    18         display: flex;
       
    19         flex: 1;
       
    20         > * {
       
    21             padding-left: ($grid-gutter-width / 2);
       
    22             padding-right: ($grid-gutter-width / 2);
       
    23         }
       
    24         .notes-affix {
       
    25             min-width: 17%;
       
    26             max-width: 17%;
       
    27             display: flex;
       
    28             flex-direction: column;
       
    29             // > *:first-child {
       
    30             //     max-height: calc(100%);
       
    31             //     overflow-y: auto;
       
    32             // }
       
    33         }
       
    34         .notes-affix-summary {
       
    35             display: flex;
       
    36             flex-direction: column;
       
    37             overflow: hidden;
       
    38         }
       
    39         .notes-list {
       
    40             width: 100%;
       
    41             overflow-y: auto;
       
    42             overflow-x: hidden;
       
    43         }
       
    44     }
       
    45 }