/*
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

.resizableH {
    padding-bottom: 4px;
    position: relative;
}

.resizableH:after {
    content: " ";
    background-color: #ccc;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    cursor: row-resize;
}

.pendingDelete {
    background-color: red;
}
