Teseor CSS

v2.5.2

  • Home
Guides
  • Getting Started
  • Theming
  • Token Architecture
  • Accessibility
Foundation
  • Colors
  • Design Tokens
  • Grid System
  • Root
  • Spacing
  • Typography
Layout
  • Aspect Ratio
  • Box
  • Center
  • Column
  • Container
  • Content
  • Footer
  • Grid
  • Layout
  • Main
  • Nav Rail
  • Page Header
  • Row
  • Sidebar
  • Sidebar Nav
  • Topbar
Components
  • Actions
    • Button
  • Forms
    • Checkbox
    • Field
    • Fieldset
    • Form
    • Form Error
    • Form Helper
    • Input
    • Label
    • Number Input
    • Password Input
    • Radio
    • Search Input
    • Select
    • Slider
    • Textarea
    • Toggle
  • Data Display
    • Avatar
    • Badge
    • Card
    • Data List
    • Icon
    • Image
    • Stat
    • Status
    • Table
    • Tag
  • Feedback
    • Alert
    • Progress
    • Skeleton
    • Spinner
    • Toast
  • Navigation
    • Breadcrumb
    • Dropdown Menu
    • Menu
    • Nav
    • Pagination
    • Tabs
  • Overlays
    • Dialog
    • Drawer
    • Modal
    • Overlay
    • Popover
    • Tooltip
  • Disclosure
    • Accordion
    • Disclosure
  • Content
    • Divider
    • Scroll Area
    • Spacer
Typography
  • Blockquote
  • Code
  • Heading
  • Kbd
  • Link
  • List
  • Mark
Utilities
  • Container
  • Debug
  • Display
  • Position
  • Scroll Animation
  • Scroll Snap
  • Spacing
  • Text
  • View Transition
  • Visually Hidden

Page Header

Content area header with title, description, actions, and optional breadcrumb.

Default

Users

Manage user accounts and permissions.

Base

ClassDescription
.ui-page-headerBase class

Bordered

ClassDescription
.ui-page-header--borderedbordered

Sticky

ClassDescription
.ui-page-header--stickysticky

Override these CSS custom properties to customize the component.

TokenDefaultDescription
--ui-page-header-padding-block var(--ui-space-3) Vertical padding
--ui-page-header-padding-inline 0 Horizontal padding
--ui-page-header-gap var(--ui-space-2) Gap between children
--ui-page-header-border-color var(--ui-color-border) Border color

With Breadcrumb

Home / Settings / Users

Users

<!-- Breadcrumb spans the full width above the title row. -->
<header class="ui-page-header ui-page-header--bordered">
  <nav class="ui-page-header__breadcrumb">
    <span>Home / Settings / Users</span>
  </nav>
  <div class="ui-page-header__title">
    <h1 class="ui-heading ui-heading--xl">Users</h1>
  </div>
  <div class="ui-page-header__actions">
    <button class="ui-button">Export</button>
  </div>
</header>

Bordered

Dashboard

<!-- Bottom border via inset box-shadow. -->
<header class="ui-page-header ui-page-header--bordered">
  <div class="ui-page-header__title">
    <h1 class="ui-heading ui-heading--xl">Dashboard</h1>
  </div>
</header>

Sticky

Sticky Header

<!-- Sticks to the top of the scroll container. -->
<header class="ui-page-header ui-page-header--sticky ui-page-header--bordered">
  <div class="ui-page-header__title">
    <h1 class="ui-heading ui-heading--xl">Sticky Header</h1>
  </div>
  <div class="ui-page-header__actions">
    <button class="ui-button">Save</button>
  </div>
</header>