forked from React-Group/interstellar_ai
Compare commits
No commits in common. "1744148b1b5ef9c8e8417b3c45be4ede0e67005e" and "c6334ff17a499a9e2284f0896a7a4634b03f76f3" have entirely different histories.
1744148b1b
...
c6334ff17a
3 changed files with 6 additions and 11 deletions
|
@ -12,14 +12,6 @@
|
|||
z-index: 10000;
|
||||
}
|
||||
|
||||
.settings-container{
|
||||
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 3fr; /* 1fr for sidebar, 3fr for main content */
|
||||
grid-auto-flow: column;
|
||||
overflow-x:hidden;
|
||||
}
|
||||
|
||||
/* Settings content */
|
||||
.settings-content {
|
||||
background: #f5f5f5;
|
||||
|
@ -30,6 +22,9 @@
|
|||
max-width: 800px;
|
||||
height: 90%;
|
||||
max-height: 600px;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 3fr; /* 1fr for sidebar, 3fr for main content */
|
||||
grid-auto-flow: column;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||
overflow: scroll; /* Prevents overflow of the content */
|
||||
position: relative; /* Needed for absolute positioning of close button */
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
background: #fff;
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
border-radius: 10px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
||||
overflow-y: scroll; /* Allow vertical scrolling if content overflows */
|
||||
margin: 2rem auto;
|
||||
margin: 0 auto;
|
||||
height: 80vh;
|
||||
}
|
||||
|
||||
|
@ -31,7 +31,6 @@
|
|||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #333;
|
||||
transition: background-color 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
.faq-item h3 {
|
||||
|
@ -48,4 +47,5 @@
|
|||
|
||||
.faq-item:hover {
|
||||
background-color: #444;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue