Skip to content

Commit

Permalink
fix: dataframe styles (#10)
Browse files Browse the repository at this point in the history
Signed-off-by: Petr Bulánek <bulanek.petr@gmail.com>
  • Loading branch information
PetrBulanek authored Dec 10, 2024
1 parent 094a19d commit 2b5f80e
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/styles/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,10 @@
}
}

.stForm {
border-color: $border-subtle;
}

.stButton,
.stDownloadButton,
.stFormSubmitButton {
Expand Down Expand Up @@ -470,6 +474,10 @@
}
}

.stDataFrame {
inline-size: 100%;
}

.stRadio {
[role='radiogroup'] {
gap: $spacing-03;
Expand Down Expand Up @@ -637,10 +645,16 @@
box-shadow: none;
color: inherit;
}
&:hover {
&:hover:not(:disabled) {
background-color: $button-primary;
color: $text-on-color;
}
&:disabled {
color: $text-on-color-disabled;
}
svg {
color: inherit;
}
}

[data-testid='InputInstructions'] {
Expand Down

0 comments on commit 2b5f80e

Please sign in to comment.