Spaces:
Sleeping
Sleeping
File size: 1,925 Bytes
9caffaa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | div.main {
height: 100%;
color: hsla(var(--foreground));
margin-left: auto;
margin-right: auto;
}
div.suggestions {
overflow-x: none;
height: fit-content;
padding: 10px;
white-space: nowrap;
gap: 1rem;
}
div.inputBox {
margin-bottom: 20px;
align-content: center;
}
input.inputBox {
border: none;
}
input.inputBox:focus {
outline: none;
background-color: transparent;
}
div.inputBox:focus {
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
div.chatBodyFull {
display: grid;
grid-template-columns: 1fr;
height: 100%;
}
button.inputBox {
border: none;
outline: none;
background-color: transparent;
cursor: pointer;
border-radius: 0.5rem;
padding: 0.5rem;
background: linear-gradient(var(--calm-green), var(--calm-blue));
}
div.chatBody {
display: grid;
grid-template-columns: 1fr 1fr;
height: 100%;
}
.inputBox {
color: hsla(var(--foreground));
}
div.chatLayout {
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
}
div.chatBox {
display: grid;
}
div.titleBar {
display: grid;
grid-template-columns: 1fr auto;
}
div.chatBoxBody {
display: grid;
height: 100%;
margin: auto;
}
div.homeGreetings {
display: grid;
height: 100%;
margin: auto;
grid-template-rows: 1fr 2fr;
}
@media screen and (max-width: 768px) {
div.chatBody {
grid-template-columns: 0fr 1fr;
}
div.chatBoxBody {
width: 100%;
grid-template-rows: auto;
}
div.chatBox {
padding: 0;
height: 100%;
}
div.chatLayout {
gap: 0;
display: flex;
height: 100%;
}
div.homeGreetings {
display: flex;
flex-direction: column;
}
div.inputBox {
margin-bottom: 0;
height: fit-content;
align-items: flex-end;
margin-top: auto;
}
}
|