Skip to content

Commit

Permalink
fix: #82
Browse files Browse the repository at this point in the history
  • Loading branch information
SilenceLeo committed Aug 9, 2023
1 parent 736da0e commit 7cbb74b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .sentryclirc
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[defaults]
project=snowb
org=silencleo

[auth]
token=0e837d2453654b1b9a33ff52bd88554e123de71fb94747898770d027da48bd42
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
align-items: center;
justify-content: center;
position: relative;
width: 80px;
height: 80px;
}
.image {
max-width: 100%;
Expand All @@ -15,11 +17,18 @@
position: absolute;
left: 0;
top: 0;
flex-direction: column;
}
.inputLabel {
width: 100%;
height: 100%;
align-items: flex-end;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.3) 50%,
rgba(0, 0, 0, 0.8)
);

& input {
text-align: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const ImageGlyph: FunctionComponent<ImageGlyphProps> = (
return (
<Paper variant='outlined' className={styles.root}>
<img className={styles.image} src={glyph.src} alt={glyph.fileName} />
<Grid container sx={{ direction: 'column' }} className={styles.actions}>
<Grid container className={styles.actions}>
<Grid
item
container
Expand All @@ -59,7 +59,7 @@ const ImageGlyph: FunctionComponent<ImageGlyphProps> = (
onChange={(e) => changeSelect(e.target.checked)}
/>
<IconButton
color='primary'
color='info'
size='small'
onClick={() => removeImage(glyph)}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
width: 100%;
display: flex;
flex-wrap: wrap;
gap: 8px;
}

0 comments on commit 7cbb74b

Please sign in to comment.