15 lines
315 B
CSS
15 lines
315 B
CSS
|
/* Apply this customization only on smaller screens */
|
||
|
@media (max-width: 700px) {
|
||
|
|
||
|
/* Hide non-overflow Newtab button */
|
||
|
#tabs-newtab-button {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
/* Display overflow New-tab button by default */
|
||
|
#new-tab-button {
|
||
|
display: initial !important;
|
||
|
}
|
||
|
|
||
|
}
|