[Snippet] Desktop like Sidebar on Mobile

Hello there,

I was really bothered by the fact that the last 3 action buttons in the sidebar aren‘t bottom aligned in Mobile just like on Desktop. So I hacked something together:

Before:

After:

Just add the following css to any active snippet:

.is-mobile .side-dock-settings {
  position: absolute;
  bottom: 0;
  padding: var(--size-4-2);
  min-width: var(--ribbon-width);
}

Enjoy!

(I know, this is probably the most evil css hack you can do, but it works so idc)