1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
3
4export D := Window {
5 VerticalLayout {
6 for ab in 1 : Rectangle {
7 width: 100%;
8 drop-shadow-offset-x: 1px;
9 }
10 }
11}
12