Skip to content

Commit

Permalink
made the buttons visible again
Browse files Browse the repository at this point in the history
  • Loading branch information
adenjonah committed May 15, 2024
1 parent b373f7e commit 0d2e7c8
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 34 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ __pycache__/server.cpython-312.pyc
config_keys.json
__pycache__/server.cpython-312.pyc
tss_data.json
/myenv
77 changes: 43 additions & 34 deletions src/pages-style/ingressegress 2.css
Original file line number Diff line number Diff line change
@@ -1,35 +1,44 @@
.ingressegress-container {
display: flex;
}

.left-column {
flex: 3;
padding: 20px;
background-color: #f0f0f0;
}

.right-column {
flex: 1;
padding: 20px;
background-color: #e0e0e0;
max-height: 400px; /* Set a maximum height for the right column */
overflow-y: auto; /* Enable vertical scrolling if content exceeds the maximum height */
}

.select-container {
margin-bottom: 10px;
}

.select-container select {
width: 100%;
padding: 8px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

.select-container select:focus {
outline: none;
border-color: #007bff;
}
display: flex;
}

.left-column {
flex: 3;
padding: 20px;
background-color: #f0f0f0;
}

.right-column {
flex: 1;
padding: 20px;
background-color: #e0e0e0;
max-height: 400px; /* Set a maximum height for the right column */
overflow-y: auto; /* Enable vertical scrolling if content exceeds the maximum height */
position: relative; /* Add this to enable absolute positioning for children */
}

.select-container {
margin-bottom: 10px;
}

.select-container select {
width: 100%;
padding: 8px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

.select-container select:focus {
outline: none;
border-color: #007bff;
}

.navigation-buttons {
display: flex;
justify-content: space-between;
position: absolute;
bottom: 20px;
width: calc(100% - 40px); /* Adjust width to match padding */
}

0 comments on commit 0d2e7c8

Please sign in to comment.