Skip to content

Commit

Permalink
Merge pull request #170 from bavix/input-color
Browse files Browse the repository at this point in the history
fix color input
  • Loading branch information
rez1dent3 authored Jul 27, 2024
2 parents 8b52319 + 04f1b6c commit 0666d1e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@

gtag('config', 'G-0E805HG8JN');
</script>
<script src="assets/bundle-sKIpSQ3D.js"></script>
<script src="assets/bundle-BpvKsHyx.js"></script>
</body>
</html>
4 changes: 2 additions & 2 deletions src/nav.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default class NavComponent extends React.Component {
{/* Select to choose the UUID type */}
<div className="field has-addons">
<p className="control">
<span className="select is-small">
<span className="select is-link is-small">
<select onChange={(e) => setUuidType(e.target.value)}>
{uuidTypes.map(type => (
<option key={type} value={type} checked={uuidType === type}>
Expand All @@ -117,7 +117,7 @@ export default class NavComponent extends React.Component {
<input
readOnly={true}
size={40}
className="input is-info is-small"
className="input is-link is-small"
type="text"
value={uuid}
placeholder="Online UUID Generator"
Expand Down

0 comments on commit 0666d1e

Please sign in to comment.