penpot/frontend/src/app/main/ui/flex_controls.cljs
Dexterity 0b60e4e16e
♻️ Migrate flex-controls padding/margin/gap to modern syntax (#9458)
Co-authored-by: Andrey Antukh <niwi@niwi.nz>
2026-06-10 13:47:48 +02:00

17 lines
569 B
Clojure

;; This Source Code Form is subject to the terms of the Mozilla Public
;; License, v. 2.0. If a copy of the MPL was not distributed with this
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;;
;; Copyright (c) KALEIDOS INC Sucursal en España SL
(ns app.main.ui.flex-controls
(:require
[app.common.data.macros :as dm]
[app.main.ui.flex-controls.gap :as fcg]
[app.main.ui.flex-controls.margin :as fcm]
[app.main.ui.flex-controls.padding :as fcp]))
(dm/export fcg/gap-control*)
(dm/export fcm/margin-control*)
(dm/export fcp/padding-control*)