Skip to content

Commit

Permalink
Merge pull request #30 from eeditiones/fix-menu
Browse files Browse the repository at this point in the history
fix expanding menu
  • Loading branch information
windauer authored Oct 15, 2024
2 parents 91288d7 + 78bdece commit d28a8e1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
3 changes: 3 additions & 0 deletions assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ a[href]:link {
a[href]:hover {
text-decoration: underline;
}
a:focus{
outline: none;
}

.badge {
--bs-badge-font-size: var(--font-size-small);
Expand Down
15 changes: 12 additions & 3 deletions assets/css/registry.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ html {
--menu-icon: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar{
height: 100%;
}
.navbar-toggler {
padding: 0.1rem;
margin: 3px;
Expand Down Expand Up @@ -40,14 +43,18 @@ body {
border: thin solid;
}

/*
.navbar {
padding: 0.1rem;
height: auto;
}
*/

/*
nav.navbar.navbar-expand-lg {
overflow: auto;
}
*/

.navbar-brand {
height: 2rem;
Expand All @@ -56,7 +63,7 @@ nav.navbar.navbar-expand-lg {

main {
margin: 0;
margin-top: 55px;
margin-top: 75px;
padding: 0;

h1 {
Expand All @@ -81,7 +88,9 @@ ul {
padding: 0;
list-style: none;
}

header{
height: 75px;
}
#header-container {
border-bottom: thin solid lightgrey;
}
Expand Down Expand Up @@ -294,7 +303,7 @@ button#reset {
#filter-container {
position: fixed;
z-index: 500;
top: 3.5rem;
top: 4.5rem;
right: 1rem;
width: calc(50vw - 5rem);
}
Expand Down

0 comments on commit d28a8e1

Please sign in to comment.