このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/resources/sass_____________/layout/_footer.scss

33 行
703 B
SCSS
Raw 通常表示 履歴

2021-09-29 22:23:02 +09:00
/* #Footer
-------------------------------------------------------------------------- */
/*doc
---
title: footer
name: footer
categories: [layout]
---
`<body>`タグ直下にある`<footer>`タグのスタイルです
コピーライトやナビゲーションのレイアウトを含むことはできますが
コンポーネント自体はobject/projectレイヤーで定義します
```block
<body>
<footer class="l-footer">
<div class="l-footer__copyright">
<small class="p-copyright"></small>
</div>
<nav class="l-footer__sub-nav">
<ul class="p-foot-nav">
<li></li>
<li></li>
<ul>
</nav>
</footer>
</body>
```
*/
2021-09-30 13:38:14 +09:00
.l-footer {
2021-09-29 22:23:02 +09:00
2021-09-30 13:38:14 +09:00
}