Footer.scss 542 B

12345678910111213141516171819202122232425262728293031323334
  1. .com-footer{
  2. height:60px;
  3. // border:1px solid red;
  4. background:#FFF;
  5. border-top:1px solid #CCC;
  6. position:fixed;
  7. bottom:0px;
  8. width:100%;
  9. display:flex;
  10. flex-direction: row;
  11. .menu{
  12. width:25%;
  13. display:flex;
  14. flex-direction: column;
  15. .icon{
  16. display:flex;
  17. flex-direction: column;
  18. justify-content: center;
  19. align-items: center;
  20. margin-top:10px;
  21. .img{
  22. height:18px;
  23. width:18px;
  24. }
  25. }
  26. .name{
  27. font-size:12px;
  28. display:flex;
  29. justify-content: center;
  30. align-items: center;
  31. margin-top:5px;
  32. }
  33. }
  34. }