Sidebar Custom CSS didn't Work for me

Description

I add
:root {
–sidebar-footer-height: 80px;
}
to the custom css and it change nothing.

The reason that I put this custom css is I want to make side bar logo bigger.
If anybody have better way to approach that. It will be grateful.

But on my old chat server with version 0.74.3, it work fine
thx

Server Setup Information

  • Version of Rocket.Chat Server: 1.0.3
  • Operating System: centos7
  • Deployment Method:
  • Number of Running Instances: 1
  • DB Replicaset Oplog: enable
  • NodeJS Version: 8.11.4 - x64
  • MongoDB Version: 4.0.9
  • Proxy: nginx
  • Firewalls involved: firewalld

Any additional Information

log did not output any error.

Hi! A bug preventing custom CSS was introduced in 1.0.* version; the correction will be available on 1.1.0. As a workaround, you can use the !important CSS rule:

:root {
  –sidebar-footer-height: 80px !important;
}

Thank you so much. :kissing:

1 Like