mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 06:33:41 +08:00
f45d1e6791
This is only the first steps of a redesign - redesigns the buttons to have a larger hitzone - generally bigger composer - clicking near textarea focuses the input - relies on the fact that safe-area-inset-bottom is set globally and doesn’t need to be set in sub components
15 lines
235 B
SCSS
15 lines
235 B
SCSS
.chat-composer-button {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
&__btn {
|
|
box-sizing: border-box;
|
|
width: 50px;
|
|
border: 0;
|
|
height: 100%;
|
|
background: none;
|
|
}
|
|
}
|