Browse Source

grid list toggle

Justin Rhee 3 years ago
parent
commit
3e82973357
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dashboard/src/main/home/app-dashboard/AppDashboard.tsx

+ 2 - 2
dashboard/src/main/home/app-dashboard/AppDashboard.tsx

@@ -158,13 +158,13 @@ export default AppDashboard;
 
 
 const Row = styled.div<{ isAtBottom?: boolean }>`
 const Row = styled.div<{ isAtBottom?: boolean }>`
   cursor: pointer;
   cursor: pointer;
-  padding: 20px;
+  padding: 15px;
   border-bottom: ${props => props.isAtBottom ? "none" : "1px solid #494b4f"};
   border-bottom: ${props => props.isAtBottom ? "none" : "1px solid #494b4f"};
   background: ${props => props.theme.clickable.bg};
   background: ${props => props.theme.clickable.bg};
   position: relative;
   position: relative;
   border: 1px solid #494b4f;
   border: 1px solid #494b4f;
   border-radius: 5px;
   border-radius: 5px;
-  margin-bottom: 25px;
+  margin-bottom: 15px;
 `;
 `;
 
 
 const List = styled.div`
 const List = styled.div`