Blame view

babylon-vue-4.0.0/src/assets/sass/layout/_footer.scss 605 Bytes
0f94839d   함상기   babylon client fo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  .layout-footer {
      padding: 20px;
      background-color: $footerBgColor;
      border-top: 1px solid $footerBorderColor;
  
      img {
          height: 30px;
          margin-top: 4px;
      }
  
      .footer-icons {
          text-align: right;
  
          button {
              color: $textSecondaryColor;
              font-size: 24px;
              margin-right: 16px;
              display: inline-block;
              transition: color $transitionDuration;
              
              i {
                  font-size: 1.5rem;
              }
  
              &:hover {
                  color: $textColor;
              }
          }
      }
  }