UX: Fix `timeline-handle` positioning (#20217)

Positioning of the timeline handle was slightly off on the glimmer-topic-timeline

# Before
<img width="451" alt="Screenshot 2023-02-08 at 11 30 18 AM" src="https://user-images.githubusercontent.com/50783505/217606919-2f07b69f-4820-4b72-805b-ed28b34c79dc.png">


# After
<img width="447" alt="Screenshot 2023-02-08 at 11 29 53 AM" src="https://user-images.githubusercontent.com/50783505/217606811-977f52df-6070-4127-80c1-27c97174a9a7.png">
This commit is contained in:
Isaac Janzen 2023-02-08 12:01:14 -06:00 committed by GitHub
parent 7eb6223b04
commit 96c1fad2fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -251,6 +251,7 @@
float: left; float: left;
z-index: z("base") + 1; z-index: z("base") + 1;
outline: 1px solid transparent; outline: 1px solid transparent;
margin-left: 0.5px;
} }
.timeline-scroller-content { .timeline-scroller-content {

View File

@ -1,6 +1,5 @@
import Route from "@ember/routing/route"; import Route from "@ember/routing/route";
import { allCategories } from "discourse/plugins/styleguide/discourse/lib/styleguide"; import { allCategories } from "discourse/plugins/styleguide/discourse/lib/styleguide";
export default Route.extend({ export default Route.extend({
model() { model() {
return allCategories(); return allCategories();