Document border

Can I see document border? I checked the settings but could not find.

What do you mean by “document border”. Some visual outline? Around an opened page or a part of a hierarchy?

1 Like

Yes visual outline on the current document. Something like this.

This is what Custom CSS is for. Here is a quick demo:

body { background-color: #f2e8e7; }

#document {
  border: 1px solid rgb(0 0 0 / 25%);
  padding: 15px;
  padding-left: 40px;
  border-radius: 12px;
  top: 10px;
  box-shadow: 0 0 8px 2px rgb(0 0 0 / 20%);
  background-color: #fff7f5;
}

Keep in mind though that there are some UI elements (close button, bottom toolbar) that don’t quite fit this design.

6 Likes

Wow looks great. Thank you so much for the answer. Exactly what I was looking for.

1 Like