Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,20 @@
bottom: 0;
width: 100%;
}
@media only screen and (max-width: 900px) {
.d-flex {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @Kuldeepburjbhalaike, seems, you are creating new class .d-flex style, but not used anywhere. I am not sure how it will be applied on HTML element.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi @Jayprakash-SE, the class .d-flex is used in footer>div.

justify-content: space-evenly !important;
align-items: center !important;
font-size: 0.95rem !important;
}}
@media only screen and (max-width: 330px) {
.d-flex {
flex-direction: column;
}
.mx-2 {
display: none;
}}
}
</style>
</head>
<body>
Expand Down Expand Up @@ -70,7 +84,7 @@ <h5>Translatable Wikitext Output</h5>
<span class="mx-2">|</span>
<p class="mb-0">More info: <a href="https://meta.wikimedia.org/wiki/Indic-TechCom">Indic-TechCom</a></p>
<span class="mx-2">|</span>
<p class="mb-0"><a href="https://github.com/indictechcom/translatable-wikitext-converter">View source</a></p>
<p class="mb-0">View Source: <a href="https://github.com/indictechcom/translatable-wikitext-converter">GitHub</a></p>
</div>
</footer>
</div>
Expand Down