diff --git a/client/homebrew/pages/vaultPage/vaultPage.jsx b/client/homebrew/pages/vaultPage/vaultPage.jsx
index e2c175fe5..f8bca4052 100644
--- a/client/homebrew/pages/vaultPage/vaultPage.jsx
+++ b/client/homebrew/pages/vaultPage/vaultPage.jsx
@@ -12,6 +12,8 @@ const NewBrew = require('../../navbar/newbrew.navitem.jsx');
const HelpNavItem = require('../../navbar/help.navitem.jsx');
const BrewItem = require('../basePages/listPage/brewItem/brewItem.jsx');
+const SplitPane = require('../../../../shared/naturalcrit/splitPane/splitPane.jsx');
+
const request = require('../../utils/request-middleware.js');
const VaultPage = (props) => {
@@ -377,11 +379,13 @@ const VaultPage = (props) => {
{renderNavItems()}
+
{renderForm()}
{renderFoundBrews()}
+
);
diff --git a/client/homebrew/pages/vaultPage/vaultPage.less b/client/homebrew/pages/vaultPage/vaultPage.less
index 66c627f65..9fa392b82 100644
--- a/client/homebrew/pages/vaultPage/vaultPage.less
+++ b/client/homebrew/pages/vaultPage/vaultPage.less
@@ -33,9 +33,7 @@ body {
}
.content {
- display : grid;
- grid-template-columns : clamp(310px,25vw, 600px) 2fr;
- background : #2C3E50;
+ background: #2C3E50;
.dataGroup {
width : 100%;
@@ -79,7 +77,6 @@ body {
overflow-y : auto;
font-family : 'BookInsanityRemake';
font-size : 0.34cm;
- border-left : 2px solid;
.foundBrews {
@@ -248,17 +245,14 @@ body {
// media query for when the page is smaller than 1079 px in width
@media screen and (max-width: 1079px) {
.vaultPage .content {
- grid-template-columns: none;
- grid-template-rows: 325px 1fr;
.brewLookup {
- padding-block:10px 20px;
+ padding:0 20px 20px 10px;
}
.dataGroup.resultsContainer .foundBrews .brewItem {
- width: 100%;
- color: black;
- background-image: url('/assets/parchmentBackground.jpg');
+ width : 100%;
+ margin-inline : auto;
}
}
-}
\ No newline at end of file
+}