説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_headroom.scss 478B

12345678910111213141516171819202122232425
  1. //
  2. // Headroom
  3. //
  4. .headroom {
  5. will-change: transform;
  6. background-color: inherit;
  7. @include transition($transition-base);
  8. }
  9. .headroom--pinned {
  10. @extend .position-fixed;
  11. transform: translateY(0%);
  12. }
  13. .headroom--unpinned {
  14. @extend .position-fixed;
  15. transform: translateY(-100%);
  16. }
  17. .headroom--not-top {
  18. padding-top: .5rem;
  19. padding-bottom: .5rem;
  20. background-color: theme-color("default") !important;
  21. box-shadow: 0 1px 10px rgba(130, 130, 134, 0.1);
  22. }