NathMen12 commited on
Commit
613dec9
·
verified ·
1 Parent(s): e67abdf

Update public/style.css

Browse files
Files changed (1) hide show
  1. public/style.css +17 -11
public/style.css CHANGED
@@ -54,32 +54,38 @@ a {
54
  top: 0;
55
  z-index: 10;
56
  display: flex;
57
- align-items: center;
58
- justify-content: space-between;
59
- gap: 1rem;
60
- padding: 0.85rem clamp(1rem, 3vw, 2.5rem);
61
  background: rgba(8, 17, 31, 0.88);
62
  border-bottom: 1px solid var(--border);
63
  backdrop-filter: blur(18px);
64
- flex-wrap: wrap;
65
  }
66
 
67
- .topbar-left {
68
- min-width: 0;
69
- flex: 1 1 220px;
 
 
 
70
  }
71
 
72
  .topbar h1 {
73
  margin: 0;
74
- font-size: clamp(1.2rem, 2.8vw, 1.8rem);
75
  line-height: 1.2;
 
76
  }
77
 
78
  .topbar p {
79
- margin: 0.2rem 0 0;
80
  color: var(--muted);
81
- font-size: clamp(0.75rem, 1.6vw, 0.9rem);
82
  line-height: 1.3;
 
 
 
83
  }
84
 
85
  .topbar-actions {
 
54
  top: 0;
55
  z-index: 10;
56
  display: flex;
57
+ flex-direction: column;
58
+ align-items: flex-start;
59
+ gap: 0.35rem;
60
+ padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
61
  background: rgba(8, 17, 31, 0.88);
62
  border-bottom: 1px solid var(--border);
63
  backdrop-filter: blur(18px);
 
64
  }
65
 
66
+ .topbar-row {
67
+ display: flex;
68
+ align-items: center;
69
+ justify-content: space-between;
70
+ width: 100%;
71
+ gap: 0.75rem;
72
  }
73
 
74
  .topbar h1 {
75
  margin: 0;
76
+ font-size: clamp(1.1rem, 2.5vw, 1.6rem);
77
  line-height: 1.2;
78
+ white-space: nowrap;
79
  }
80
 
81
  .topbar p {
82
+ margin: 0;
83
  color: var(--muted);
84
+ font-size: clamp(0.72rem, 1.4vw, 0.85rem);
85
  line-height: 1.3;
86
+ overflow: hidden;
87
+ text-overflow: ellipsis;
88
+ white-space: nowrap;
89
  }
90
 
91
  .topbar-actions {