-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into snyk-upgrade-4ebada4289f17a6cf9cbccf812f02658
- Loading branch information
Showing
12 changed files
with
248 additions
and
249 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
.my-info-banner { | ||
position: relative; /* Ensure z-index works */ | ||
z-index: 1000; /* Keeps it above other content */ | ||
margin-bottom: 3rem; /* Space for content below */ | ||
box-sizing: border-box; /* Include padding and border in the element's width and height */ | ||
padding: 1rem; /* Optional padding for better spacing */ | ||
} | ||
|
||
.my-info-banner .row { | ||
display: flex; | ||
flex-wrap: wrap; /* Allow wrapping on smaller screens */ | ||
align-items: center; | ||
} | ||
|
||
.my-info-banner .col-lg-4, | ||
.my-info-banner .col-lg-8 { | ||
flex: 100; /* Allow columns to scale */ | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.my-info-banner .row { | ||
flex-direction: column; /* Stack columns vertically on small screens */ | ||
} | ||
|
||
.my-info-banner .col-lg-3, | ||
.my-info-banner .col-lg-9 { | ||
width: 100%; /* Full width for columns on small screens */ | ||
} | ||
|
||
.my-info-banner { | ||
margin-bottom: 1rem; /* Reduce margin for smaller screens */ | ||
} | ||
} | ||
|
||
.my-info-banner-img { | ||
width: 25vw; | ||
height: auto; | ||
padding-top: 1rem; | ||
} |
Oops, something went wrong.