-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed final row not rendering in dual column mode
Added search results page Fixed content expanding weirdly on some browsers Styling consistency changes Fixed search bugs
- Loading branch information
Showing
10 changed files
with
259 additions
and
39 deletions.
There are no files selected for viewing
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
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,24 @@ | ||
.searchContainer { | ||
display: grid; | ||
grid-template-rows: minmax(450px, 100%); | ||
height: 100%; | ||
justify-items: stretch; | ||
overflow-y: hidden; | ||
} | ||
|
||
.gridItemWrapper { | ||
align-items: center; | ||
// border-bottom: 1px solid rgba(0, 0, 0, 0.12); | ||
// border-right: 1px solid rgba(0, 0, 0, 0.12); | ||
cursor: pointer; | ||
text-align: left; | ||
user-select: none; | ||
} | ||
|
||
.gridItem { | ||
transition: transform 0.1s ease-in-out; | ||
will-change: transform; | ||
&:hover { | ||
transform: translateY(-2px); | ||
} | ||
} |
Oops, something went wrong.