refactor: Simplify styles in FilterManager by removing inline font size specifications for improved consistency
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 6m28s
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 6m28s
This commit is contained in:
@@ -408,7 +408,7 @@ function FilterManager() {
|
||||
<tbody>
|
||||
{filteredFilters.map((filter, index) => (
|
||||
<tr key={index}>
|
||||
<td className="font-monospace align-middle" style={{fontSize: '15px'}}>
|
||||
<td className="font-monospace align-middle">
|
||||
{editingFilter === filter.community ? (
|
||||
<input
|
||||
ref={editInputRef}
|
||||
@@ -429,7 +429,7 @@ function FilterManager() {
|
||||
<span>{filter.community}</span>
|
||||
)}
|
||||
</td>
|
||||
<td className="align-middle text-center" style={{fontSize: '15px'}}>
|
||||
<td className="align-middle text-center">
|
||||
{editingFilter === filter.community ? (
|
||||
<input
|
||||
type="text"
|
||||
@@ -446,7 +446,7 @@ function FilterManager() {
|
||||
style={{minWidth: '120px'}}
|
||||
/>
|
||||
) : (
|
||||
<span className="badge bg-blue-lt text-blue" style={{fontSize: '15px', letterSpacing: '0.5px'}}>{filter.gateway}</span>
|
||||
<span className="badge bg-blue-lt text-blue" style={{letterSpacing: '0.5px'}}>{filter.gateway}</span>
|
||||
)}
|
||||
</td>
|
||||
<td className="align-middle text-muted" style={{fontSize: '14px', maxWidth: '300px', overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap'}}>
|
||||
|
||||
Reference in New Issue
Block a user