6555 - Remove chapter-page.scss (#6865)

This commit is contained in:
Simon Fessehaye 2021-06-15 14:11:21 -06:00 коммит произвёл GitHub
Родитель 5c129c2b4e
Коммит ac6cd2a629
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 7 добавлений и 26 удалений

Просмотреть файл

@ -42,7 +42,7 @@
</h3>
{% for grandchild in child_page.grandchildren %}
<h4 class="d-sm-block d-none body">
<a href="{{ grandchild.url }}" class="d-block w-75 chapter-article-link">
<a href="{{ grandchild.url }}" class="d-block w-75 publication-chapter-article-link">
{{ grandchild.title }}
</a>
</h4>
@ -54,7 +54,7 @@
<div class="pt-2 d-sm-none d-block">
{% for grandchild in child_page.grandchildren %}
<h4 class="body">
<a href="{{ grandchild.url }}" class="d-block chapter-article-link">
<a href="{{ grandchild.url }}" class="d-block publication-chapter-article-link">
{{ grandchild.title }} {% if child.has_unpublished_changes %}🐣{% endif %}
</a>
</h4>

Просмотреть файл

@ -62,7 +62,6 @@
@import "./views/youtube-regrets-reporter";
@import "./views/dear-internet";
@import "./views/publication";
@import "./views/chapter";
@import "./views/article";
// MozFest

Просмотреть файл

@ -1,22 +0,0 @@
// ChapterPage-specific styling.
// Also see publication-page.scss and article-page.scss
// "ChapterPage" is a child PublicationPage
// PublicationPage is the most parent PublicationPage
.chapter-number {
display: flex;
width: 80px;
height: 80px;
background-color: $light-blue;
color: $white;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 30px;
}
@media (max-width: $bp-sm) {
.chapter-article-link {
line-height: 24px;
}
}

Просмотреть файл

@ -1,5 +1,5 @@
// PublicationPage-specific styling.
// Also see chapter-page.scss and article-page.scss
// Also see article-page.scss
// "ChapterPage" is a child PublicationPage.
// PublicationPage is the most parent PublicationPage
@ -134,4 +134,8 @@
.publication-chapter-title {
margin-top: 29px;
}
.publication-chapter-article-link {
line-height: 24px;
}
}