Skip to content

Commit

Permalink
chore(style): fix bg color of login dialog in sidebar for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
qwqcode committed Nov 24, 2024
1 parent eb3310c commit 99736db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/landing/src/components/Features/Frameworks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const FrameworksFeature: React.FC = () => {
<a
key={i}
className={['icon', activeIndex == i ? 'active' : ''].join(' ')}
style={{ backgroundImage: `url('${tech.icon.replace(/'/g, '\\\'')}')` }}
style={{ backgroundImage: `url('${tech.icon.replace(/'/g, "\\'")}')` }}
href={tech.link}
target="_blank"
rel="noopener noreferrer"
Expand Down
2 changes: 1 addition & 1 deletion ui/artalk-sidebar/src/pages/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ const versionInfo = computed(() => {
left: 50%;
top: 43.5%;
transform: translate(-50%, -50%);
background: #fff;
background: var(--at-color-bg);
border: 1px solid var(--at-color-border);
padding-bottom: 10px;
width: 280px;
Expand Down

0 comments on commit 99736db

Please sign in to comment.