cancel
Showing results for 
Search instead for 
Did you mean: 

Dev Style problem

abdullah-shehawey
Associate II

Before installing Dev Style, when I opened multiple tabs in the editor, the size of the Minimize and Maximize buttons was small, as shown in the picture one . After installing Dev Style, their size changed and became larger . What's the issue, and how can I fix it? 

1000618084.png

1000618085.png

 

2 REPLIES 2
jalks
Associate

 

the Dev Style theme might be overriding the default button sizes. You can fix this by adjusting the CSS for the Minimize and Maximize buttons. Try setting specific width and height values for those buttons, like this:

 

css
Copy code
.button-class { width: auto; /* or your desired size */ height: auto; /* or your desired size */ }
 

 

Where can I find the CSS file to add these two lines of code? I can't find it.

And if I need to create a new file, how should I add it?