Merge pull request 'develop' (#4) from develop into master

Reviewed-on: #4
This commit is contained in:
dvirlabs 2025-07-01 09:55:42 +00:00
commit 337fb30ef0
2 changed files with 2 additions and 8 deletions

View File

@ -1,6 +0,0 @@
#!/bin/sh
# שימוש ב-template ממקום שלא נדרס
envsubst < /etc/env/env.js.template > /usr/share/nginx/html/env.js
exec "$@"

View File

@ -47,7 +47,7 @@ function IconSelector({ onSelect }) {
{selectedCategory && (
<div>
<label style={{ fontWeight: 'bold' }}>Choose an icon:</label>
<label style={{ fontWeight: 'bold', color: 'black' }}>Choose an icon:</label>
<div
style={{
display: 'grid',
@ -81,7 +81,7 @@ function IconSelector({ onSelect }) {
))}
</div>
{selectedIcon && (
<p style={{ marginTop: 8, fontSize: 13 }}>
<p style={{ marginTop: 8, fontSize: 13, color: 'black' }}>
Selected: <code>{selectedIcon.split('/').pop()}</code>
</p>
)}