Skip to content

Commit 73413fb

Browse files
authored
settings/api-tokens: Fix margin-top for buttons (#10737)
The top-most button should not have a dedicated top margin...
1 parent 0aebe2c commit 73413fb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/components/settings/api-tokens.module.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,10 @@
206206
.actions > * {
207207
flex-grow: 1;
208208
width: 100%;
209-
margin-top: var(--space-xs);
209+
210+
& + * {
211+
margin-top: var(--space-xs);
212+
}
210213
}
211214

212215
.new-token {

0 commit comments

Comments
 (0)