You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

61 lines
1.3 KiB

  1. .dashboard{
  2. min-height: 100%;
  3. }
  4. .cta-link{
  5. display: flex;
  6. align-items: center;
  7. justify-content: space-between;
  8. }
  9. .nav{
  10. position: sticky;
  11. background-color: rgba(255,255,255,0.92);
  12. bottom: 1rem;
  13. left: 1rem;
  14. z-index: 10;
  15. width: calc(100% - 2rem);
  16. @include border-radius(0.6rem);
  17. display: flex;
  18. justify-content: space-around;
  19. @include box-shadow(1px, 2px, 14px, rgba(0,0,0,0.10));
  20. -webkit-backdrop-filter: blur(5px);
  21. backdrop-filter: blur(5px);
  22. a{
  23. display: flex;
  24. width: 90px;
  25. align-items: center;
  26. flex-direction: column;
  27. padding: 0.6rem 0;
  28. text-decoration: none;
  29. position: relative;
  30. span{
  31. color: #A1A1A1;
  32. font-size: 0.9rem;
  33. }
  34. &::after{
  35. content: "";
  36. height: 3px;
  37. background-color: transparent;
  38. width: 100%;
  39. position: absolute;
  40. top: 0;
  41. left: 0;
  42. @include border-radius(3px);
  43. }
  44. &.active{
  45. img{
  46. filter: invert(69%) sepia(23%) saturate(866%) hue-rotate(88deg) brightness(89%) contrast(92%);
  47. }
  48. span{
  49. color: $black;
  50. }
  51. &::after{
  52. background-color: $secondary;
  53. }
  54. }
  55. }
  56. }