This commit is contained in:
parent
4718239723
commit
f31a4c33ad
3 changed files with 8 additions and 7 deletions
|
@ -18,7 +18,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&>.card-pad {
|
&>.card-pad {
|
||||||
margin-inline: var(--card-pad);
|
margin-left: var(--card-pad);
|
||||||
|
margin-right: var(--card-pad);
|
||||||
}
|
}
|
||||||
|
|
||||||
&>.card-gut {
|
&>.card-gut {
|
||||||
|
|
|
@ -27,8 +27,8 @@
|
||||||
flex-flow: row wrap;
|
flex-flow: row wrap;
|
||||||
padding-top: 16px;
|
padding-top: 16px;
|
||||||
padding-bottom: 8px;
|
padding-bottom: 8px;
|
||||||
margin-left: -0.5em;
|
margin-left: calc(var(--card-pad) - 0.5em);
|
||||||
margin-right: -0.5em;
|
margin-right: calc(var(--card-pad) - 0.5em);
|
||||||
|
|
||||||
animation: TootComposerFadeIn 110ms var(--tutu-anim-curve-sharp) both;
|
animation: TootComposerFadeIn 110ms var(--tutu-anim-curve-sharp) both;
|
||||||
}
|
}
|
||||||
|
|
|
@ -316,7 +316,7 @@ const TootComposer: Component<{
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
ref={props.ref}
|
ref={props.ref}
|
||||||
class={/* @once */ `TootComposer card`}
|
class="TootComposer card"
|
||||||
style={containerStyle()}
|
style={containerStyle()}
|
||||||
on:touchend={
|
on:touchend={
|
||||||
cancelEvent
|
cancelEvent
|
||||||
|
@ -404,7 +404,7 @@ const TootComposer: Component<{
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Show when={active()}>
|
<Show when={active()}>
|
||||||
<div class="options card-pad card-gut">
|
<div class="options card-gut">
|
||||||
<Button
|
<Button
|
||||||
startIcon={<Translate />}
|
startIcon={<Translate />}
|
||||||
endIcon={<ArrowDropDown />}
|
endIcon={<ArrowDropDown />}
|
||||||
|
|
Loading…
Add table
Reference in a new issue