Blame view

prestige-vue-4.0.0/src/assets/sass/layout/_footer.scss 1.74 KB
5b5ab7e5   함상기   20240409
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  .layout-footer {
      text-align: left;
      padding: 35px 0px;
      color:$footerTextColor;
  
      span {
          font-size: 16px;
          font-weight: 700;
          text-align: left;
          color: $footerTextColor;
          display: block;
  
          &.logo {
              color: $footerTextColor;
              font-size: 25px;
          }
      }
  
  
      ul {
          padding: 0 23px;
          color: $footerTextColor;
          text-align: left;
  
          li {
              a {
                  margin: 8px 0;
                  display: block;
                  color: $footerTextColor;
                  transition: color $transitionDuration;
  
                  &:hover {
                      color: $footerTextHoverColor;
                  }
              }
          }
  
          &.social {
              padding: 0 8px;
  
              li {
                  display: inline-block;
  
                  .icon-link {
                      .icon {
                          color: $footerTextColor;
                          font-size: 22px;
                          margin-right: 18px;
  
                          &:hover {
                              color: $footerTextHoverColor;
                          }
                      }
                  }
  
                  &:last-child {
                      .icon {
                         margin-right: 0;
                      }
                  }
              }
          }
      }
  }
  
  @media screen and (max-width: $responsiveLayoutBreakpoint ) {
      .layout-footer{
  
          span,p {
              text-align: center;
          }
  
          .templates {
              margin:auto;
              justify-content: center;
          }
  
          .links {
              margin:auto;
          }
  
          .links {
              margin-top: 15px;
          }
  
          .social {
              padding: 0;
          }
      }
  }