chatgpt-web/src/app.scss

48 lines
860 B
SCSS

@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.rotate {
animation: rotating 10s linear infinite;
}
a.is-disabled {
pointer-events: none;
cursor: default;
opacity: 0.5;
}
.greyscale {
filter: grayscale(100%);
}
/* Show the edit button on hover of the user message */
.usermessage:hover .editbutton {
/* TODO: add when ready: display: block !important; */
text-decoration: none !important;
}
/* Show the edit button on hover of the chat name */
.chat-header:hover .editbutton {
display: inline !important;
text-decoration: none !important;
}
/* Style the chat input */
.chat-input {
overflow-y:hidden;
}
/* Left-align code blocks in messages */
.message-body > pre {
text-align: left !important;
}
$footer-padding: 3rem 1.5rem;
@import "/node_modules/bulma/bulma.sass";