Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Owl Carousel for News and other fixed #70

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
added container css
  • Loading branch information
imradhe committed Sep 12, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit a3701a7e120e21b6a402169fe921f5d7a88035b5
43 changes: 43 additions & 0 deletions frontend/src/app/AI4BContainer.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
.container{
width: 100%;
margin-right: auto;
margin-left: auto;
padding-right: 15px;
padding-left: 15px;
}

@media screen and (min-width: 576px){
.container{
max-width: 540px;
}

}

@media screen and (min-width: 768px){
.container{
max-width: 720px;
}

}

@media screen and (min-width: 992px){
.container{
max-width: 960px;
}

}

@media screen and (min-width: 1200px){
.container{
max-width: 1140px;
}

}

@media screen and (min-width: 1400px){
.container{
max-width: 1320px;
}

}