Skip to content

Commit ce62593

Browse files
LianaHusAniket-Engg
authored andcommitted
fixes for dark theme
1 parent 1739e68 commit ce62593

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/vyper/src/app/app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const App = () => {
122122
<section>
123123
<div className="px-3 pt-3 mb-3 w-100">
124124
<CustomTooltip placement="bottom" tooltipText="Clone a repo of Vyper examples. Switch to the File Explorer to see the examples.">
125-
<button data-id="add-repository" className="w-100 btn border" onClick={() => {
125+
<button data-id="add-repository" className="w-100 text-dark btn border" onClick={() => {
126126
{cloneCount === 0 ? remixClient.cloneVyperRepo() : remixClient.cloneVyperRepo(cloneCount)}
127127
setCloneCount((prev) => {
128128
return ++prev
@@ -137,7 +137,7 @@ const App = () => {
137137
<div className="border-0">
138138
<div className="">
139139
<CustomAccordionToggle eventKey="0">
140-
<label className="h6">Configurations</label>
140+
<label style={{fontSize: "1REM"}}>Configurations</label>
141141
</CustomAccordionToggle>
142142
</div>
143143
<Accordion.Collapse eventKey="0">

apps/vyper/src/app/components/VyperResult.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function VyperResult({ output, plugin }: VyperResultProps) {
5959
return (
6060
<>
6161
<div className="d-flex justify-content-center w-100 mb-3 mt-1 vyper-panel-width flex-column">
62-
<button data-id="compilation-details" className="remixui_resultsBtn border btn d-block btn-block" onClick={async () => {
62+
<button data-id="compilation-details" className="remixui_resultsBtn text-dark border btn d-block btn-block" onClick={async () => {
6363
await plugin?.call('vyperCompilationDetails', 'showDetails', output)
6464
}}>
6565
<span>

0 commit comments

Comments
 (0)